TypedValue

属性

名称

类型

描述

备注

类型

GSDataType

对象

示例

from gs_interactive.models.typed_value import TypedValue

# TODO update the JSON string below
json = "{}"
# create an instance of TypedValue from a JSON string
typed_value_instance = TypedValue.from_json(json)
# print the JSON string representation of the object
print TypedValue.to_json()

# convert the object into a dict
typed_value_dict = typed_value_instance.to_dict()
# create an instance of TypedValue from a dict
typed_value_form_dict = typed_value.from_dict(typed_value_dict)

[返回模型列表] [返回API列表] [返回python_sdk]