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