BasePropertyMeta

属性

名称

类型

描述

备注

property_name

str

[可选]

property_type

GSDataType

[可选]

示例

from gs_interactive.models.base_property_meta import BasePropertyMeta

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

# convert the object into a dict
base_property_meta_dict = base_property_meta_instance.to_dict()
# create an instance of BasePropertyMeta from a dict
base_property_meta_form_dict = base_property_meta.from_dict(base_property_meta_dict)

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