基本类型

属性

名称

类型

描述

备注

primitive_type

str

示例

from gs_interactive.models.primitive_type import PrimitiveType

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

# convert the object into a dict
primitive_type_dict = primitive_type_instance.to_dict()
# create an instance of PrimitiveType from a dict
primitive_type_form_dict = primitive_type.from_dict(primitive_type_dict)

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