TimeStampType¶
Properties¶
Name |
Type |
Description |
Notes |
---|---|---|---|
timestamp |
str |
Example¶
from gs_interactive.models.time_stamp_type import TimeStampType
# TODO update the JSON string below
json = "{}"
# create an instance of TimeStampType from a JSON string
time_stamp_type_instance = TimeStampType.from_json(json)
# print the JSON string representation of the object
print(TimeStampType.to_json())
# convert the object into a dict
time_stamp_type_dict = time_stamp_type_instance.to_dict()
# create an instance of TimeStampType from a dict
time_stamp_type_from_dict = TimeStampType.from_dict(time_stamp_type_dict)
[Back to Model list] [Back to API list] [Back to python_sdk]