获取属性元数据¶
属性¶
名称 |
类型 |
描述 |
备注 |
|---|---|---|---|
property_name |
str |
[可选] |
|
property_type |
[可选] |
||
property_id |
int |
[可选] |
示例¶
from gs_interactive.models.get_property_meta import GetPropertyMeta
# TODO update the JSON string below
json = "{}"
# create an instance of GetPropertyMeta from a JSON string
get_property_meta_instance = GetPropertyMeta.from_json(json)
# print the JSON string representation of the object
print GetPropertyMeta.to_json()
# convert the object into a dict
get_property_meta_dict = get_property_meta_instance.to_dict()
# create an instance of GetPropertyMeta from a dict
get_property_meta_form_dict = get_property_meta.from_dict(get_property_meta_dict)