BasePropertyMeta¶
Properties¶
Name |
Type |
Description |
Notes |
---|---|---|---|
property_name |
str |
[optional] |
|
property_type |
[optional] |
Example¶
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_from_dict = BasePropertyMeta.from_dict(base_property_meta_dict)
[Back to Model list] [Back to API list] [Back to python_sdk]