模型属性¶
属性¶
名称 |
类型 |
描述 |
备注 |
|---|---|---|---|
名称 |
字符串 |
||
值 |
对象 |
示例¶
from gs_interactive.models.model_property import ModelProperty
# TODO update the JSON string below
json = "{}"
# create an instance of ModelProperty from a JSON string
model_property_instance = ModelProperty.from_json(json)
# print the JSON string representation of the object
print ModelProperty.to_json()
# convert the object into a dict
model_property_dict = model_property_instance.to_dict()
# create an instance of ModelProperty from a dict
model_property_form_dict = model_property.from_dict(model_property_dict)