Name |
Type |
Description |
Notes |
key |
str |
Tag key |
[optional] |
value |
str |
Tag value |
[optional] |
type |
str |
Tag type |
[optional] |
from formkiq_client.models.document_search_match_tag import DocumentSearchMatchTag
# TODO update the JSON string below
json = "{}"
# create an instance of DocumentSearchMatchTag from a JSON string
document_search_match_tag_instance = DocumentSearchMatchTag.from_json(json)
# print the JSON string representation of the object
print(DocumentSearchMatchTag.to_json())
# convert the object into a dict
document_search_match_tag_dict = document_search_match_tag_instance.to_dict()
# create an instance of DocumentSearchMatchTag from a dict
document_search_match_tag_from_dict = DocumentSearchMatchTag.from_dict(document_search_match_tag_dict)
[Back to Model list] [Back to API list] [Back to README]