ModelProperty¶
Properties¶
Name |
Type |
Description |
Notes |
---|---|---|---|
name |
str |
||
value |
object |
Example¶
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_from_dict = ModelProperty.from_dict(model_property_dict)
[Back to Model list] [Back to API list] [Back to python_sdk]