mirror of
https://github.com/OpenAPITools/openapi-generator.git
synced 2025-12-04 05:06:10 +00:00
Merge remote-tracking branch 'origin/4.2.x' into 5.0.x
This commit is contained in:
@@ -16,6 +16,7 @@ Name | Type | Description | Notes
|
||||
**date_time** | **datetime** | | [optional]
|
||||
**uuid** | **str** | | [optional]
|
||||
**password** | **str** | |
|
||||
**big_decimal** | [**BigDecimal**](BigDecimal.md) | | [optional]
|
||||
|
||||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
||||
|
||||
|
||||
@@ -43,7 +43,8 @@ class FormatTest(object):
|
||||
'date': 'date',
|
||||
'date_time': 'datetime',
|
||||
'uuid': 'str',
|
||||
'password': 'str'
|
||||
'password': 'str',
|
||||
'big_decimal': 'BigDecimal'
|
||||
}
|
||||
|
||||
attribute_map = {
|
||||
@@ -59,10 +60,11 @@ class FormatTest(object):
|
||||
'date': 'date',
|
||||
'date_time': 'dateTime',
|
||||
'uuid': 'uuid',
|
||||
'password': 'password'
|
||||
'password': 'password',
|
||||
'big_decimal': 'BigDecimal'
|
||||
}
|
||||
|
||||
def __init__(self, integer=None, int32=None, int64=None, number=None, float=None, double=None, string=None, byte=None, binary=None, date=None, date_time=None, uuid=None, password=None): # noqa: E501
|
||||
def __init__(self, integer=None, int32=None, int64=None, number=None, float=None, double=None, string=None, byte=None, binary=None, date=None, date_time=None, uuid=None, password=None, big_decimal=None): # noqa: E501
|
||||
"""FormatTest - a model defined in OpenAPI""" # noqa: E501
|
||||
|
||||
self._integer = None
|
||||
@@ -78,6 +80,7 @@ class FormatTest(object):
|
||||
self._date_time = None
|
||||
self._uuid = None
|
||||
self._password = None
|
||||
self._big_decimal = None
|
||||
self.discriminator = None
|
||||
|
||||
if integer is not None:
|
||||
@@ -102,6 +105,8 @@ class FormatTest(object):
|
||||
if uuid is not None:
|
||||
self.uuid = uuid
|
||||
self.password = password
|
||||
if big_decimal is not None:
|
||||
self.big_decimal = big_decimal
|
||||
|
||||
@property
|
||||
def integer(self):
|
||||
@@ -412,6 +417,27 @@ class FormatTest(object):
|
||||
|
||||
self._password = password
|
||||
|
||||
@property
|
||||
def big_decimal(self):
|
||||
"""Gets the big_decimal of this FormatTest. # noqa: E501
|
||||
|
||||
|
||||
:return: The big_decimal of this FormatTest. # noqa: E501
|
||||
:rtype: BigDecimal
|
||||
"""
|
||||
return self._big_decimal
|
||||
|
||||
@big_decimal.setter
|
||||
def big_decimal(self, big_decimal):
|
||||
"""Sets the big_decimal of this FormatTest.
|
||||
|
||||
|
||||
:param big_decimal: The big_decimal of this FormatTest. # noqa: E501
|
||||
:type: BigDecimal
|
||||
"""
|
||||
|
||||
self._big_decimal = big_decimal
|
||||
|
||||
def to_dict(self):
|
||||
"""Returns the model properties as a dict"""
|
||||
result = {}
|
||||
|
||||
Reference in New Issue
Block a user