TemporalType¶
属性¶
名称 |
类型 |
描述 |
备注 |
|---|---|---|---|
时间 |
示例¶
from gs_interactive.models.temporal_type import TemporalType
# TODO update the JSON string below
json = "{}"
# create an instance of TemporalType from a JSON string
temporal_type_instance = TemporalType.from_json(json)
# print the JSON string representation of the object
print TemporalType.to_json()
# convert the object into a dict
temporal_type_dict = temporal_type_instance.to_dict()
# create an instance of TemporalType from a dict
temporal_type_form_dict = temporal_type.from_dict(temporal_type_dict)