Name |
Type |
Description |
Notes |
value |
str |
Tag value |
[optional] |
values |
List[str] |
Tag values |
[optional] |
from formkiq_client.models.set_document_tag_key_request import SetDocumentTagKeyRequest
# TODO update the JSON string below
json = "{}"
# create an instance of SetDocumentTagKeyRequest from a JSON string
set_document_tag_key_request_instance = SetDocumentTagKeyRequest.from_json(json)
# print the JSON string representation of the object
print(SetDocumentTagKeyRequest.to_json())
# convert the object into a dict
set_document_tag_key_request_dict = set_document_tag_key_request_instance.to_dict()
# create an instance of SetDocumentTagKeyRequest from a dict
set_document_tag_key_request_from_dict = SetDocumentTagKeyRequest.from_dict(set_document_tag_key_request_dict)
[Back to Model list] [Back to API list] [Back to README]