创建属性元数据

属性

名称

类型

描述

备注

property_name

str

[可选]

property_type

GSDataType

[可选]

示例

from gs_interactive.models.create_property_meta import CreatePropertyMeta

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

# convert the object into a dict
create_property_meta_dict = create_property_meta_instance.to_dict()
# create an instance of CreatePropertyMeta from a dict
create_property_meta_form_dict = create_property_meta.from_dict(create_property_meta_dict)

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