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