List of Document Tags (use either 'value' or 'values' not both)
Name | Type | Description | Notes |
---|---|---|---|
key | str | Tag key | |
value | str | Tag value | [optional] |
values | List[str] | Tag values | [optional] |
from formkiq_client.models.add_document_tag import AddDocumentTag
# TODO update the JSON string below
json = "{}"
# create an instance of AddDocumentTag from a JSON string
add_document_tag_instance = AddDocumentTag.from_json(json)
# print the JSON string representation of the object
print(AddDocumentTag.to_json())
# convert the object into a dict
add_document_tag_dict = add_document_tag_instance.to_dict()
# create an instance of AddDocumentTag from a dict
add_document_tag_from_dict = AddDocumentTag.from_dict(add_document_tag_dict)