DateType

Properties

Name

Type

Description

Notes

date32

str

Example

from gs_interactive.models.date_type import DateType

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

# convert the object into a dict
date_type_dict = date_type_instance.to_dict()
# create an instance of DateType from a dict
date_type_form_dict = date_type.from_dict(date_type_dict)

[Back to Model list] [Back to API list] [Back to python_sdk]