Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 997 Bytes

TagSchemaCompositeKey.md

File metadata and controls

29 lines (20 loc) · 997 Bytes

TagSchemaCompositeKey

Properties

Name Type Description Notes
key List[str] [optional]

Example

from formkiq_client.models.tag_schema_composite_key import TagSchemaCompositeKey

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

# convert the object into a dict
tag_schema_composite_key_dict = tag_schema_composite_key_instance.to_dict()
# create an instance of TagSchemaCompositeKey from a dict
tag_schema_composite_key_from_dict = TagSchemaCompositeKey.from_dict(tag_schema_composite_key_dict)

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