数据类型¶
属性¶
名称 |
类型 |
描述 |
备注 |
|---|---|---|---|
date32 |
str |
示例¶
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)