GetPropertyMeta

Properties

Name

Type

Description

Notes

property_name

str

[optional]

property_type

GSDataType

[optional]

property_id

int

[optional]

Example

from interactive_sdk.openapi.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 README]