CreatePropertyMeta

Properties

Name

Type

Description

Notes

property_name

str

[optional]

property_type

GSDataType

[optional]

Example

from interactive_sdk.openapi.models.create_property_meta import CreatePropertyMeta

# TODO update the JSON string below
json = "{}"
# create an instance of CreatePropertyMeta from a JSON string
create_property_meta_instance = CreatePropertyMeta.from_json(json)
# print the JSON string representation of the object
print(CreatePropertyMeta.to_json())

# convert the object into a dict
create_property_meta_dict = create_property_meta_instance.to_dict()
# create an instance of CreatePropertyMeta from a dict
create_property_meta_from_dict = CreatePropertyMeta.from_dict(create_property_meta_dict)

[Back to Model list] [Back to API list] [Back to README]