Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.04 KB

TagSchemaOptional.md

File metadata and controls

31 lines (22 loc) · 1.04 KB

TagSchemaOptional

Properties

Name Type Description Notes
key str [optional]
default_values List[str] Default values [optional]
allowed_values List[str] Only valid values [optional]

Example

from formkiq_client.models.tag_schema_optional import TagSchemaOptional

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

# convert the object into a dict
tag_schema_optional_dict = tag_schema_optional_instance.to_dict()
# create an instance of TagSchemaOptional from a dict
tag_schema_optional_from_dict = TagSchemaOptional.from_dict(tag_schema_optional_dict)

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