GS数据类型¶
属性¶
名称 |
类型 |
描述 |
备注 |
|---|---|---|---|
primitive_type |
str |
||
字符串 |
|||
时间 |
示例¶
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_form_dict = gs_data_type.from_dict(gs_data_type_dict)