Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 890 Bytes

File metadata and controls

31 lines (22 loc) · 890 Bytes

ModelDate

Properties

Name Type Description Notes
day int [optional]
month int [optional]
year int [optional]

Example

from boldsign.models.model_date import ModelDate

# TODO update the JSON string below
json = "{}"
# create an instance of ModelDate from a JSON string
model_date_instance = ModelDate.from_json(json)
# print the JSON string representation of the object
print(ModelDate.to_json())

# convert the object into a dict
model_date_dict = model_date_instance.to_dict()
# create an instance of ModelDate from a dict
model_date_from_dict = ModelDate.from_dict(model_date_dict)

[Back to Model list] [Back to API list] [Back to README]