Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.01 KB

AddTagSchemaRequest.md

File metadata and controls

30 lines (21 loc) · 1.01 KB

AddTagSchemaRequest

Properties

Name Type Description Notes
name str [optional]
tags AddTagSchemaTags [optional]

Example

from formkiq_client.models.add_tag_schema_request import AddTagSchemaRequest

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

# convert the object into a dict
add_tag_schema_request_dict = add_tag_schema_request_instance.to_dict()
# create an instance of AddTagSchemaRequest from a dict
add_tag_schema_request_from_dict = AddTagSchemaRequest.from_dict(add_tag_schema_request_dict)

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