TemporalType¶
Properties¶
Name |
Type |
Description |
Notes |
---|---|---|---|
temporal |
Example¶
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_from_dict = TemporalType.from_dict(temporal_type_dict)
[Back to Model list] [Back to API list] [Back to python_sdk]