Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.08 KB

TagSchema.md

File metadata and controls

34 lines (25 loc) · 1.08 KB

TagSchema

Properties

Name Type Description Notes
tag_schema_id str [optional]
name str [optional]
user_id str [optional]
in_use bool Whether the TagSchema is in use [optional]
inserted_date str Inserted Timestamp [optional]
tags TagSchemaTags [optional]

Example

from formkiq_client.models.tag_schema import TagSchema

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

# convert the object into a dict
tag_schema_dict = tag_schema_instance.to_dict()
# create an instance of TagSchema from a dict
tag_schema_from_dict = TagSchema.from_dict(tag_schema_dict)

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