Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.11 KB

GetTagSchemasResponse.md

File metadata and controls

31 lines (22 loc) · 1.11 KB

GetTagSchemasResponse

Properties

Name Type Description Notes
schemas List[TagSchemaSummary] List of Tag Schemas [optional]
next str [optional]
previous str [optional]

Example

from formkiq_client.models.get_tag_schemas_response import GetTagSchemasResponse

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

# convert the object into a dict
get_tag_schemas_response_dict = get_tag_schemas_response_instance.to_dict()
# create an instance of GetTagSchemasResponse from a dict
get_tag_schemas_response_from_dict = GetTagSchemasResponse.from_dict(get_tag_schemas_response_dict)

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