Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.28 KB

UpdateMatchingDocumentTagsRequestUpdate.md

File metadata and controls

30 lines (21 loc) · 1.28 KB

UpdateMatchingDocumentTagsRequestUpdate

Data to update

Properties

Name Type Description Notes
tags List[AddDocumentTag] List of document tags [optional]

Example

from formkiq_client.models.update_matching_document_tags_request_update import UpdateMatchingDocumentTagsRequestUpdate

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

# convert the object into a dict
update_matching_document_tags_request_update_dict = update_matching_document_tags_request_update_instance.to_dict()
# create an instance of UpdateMatchingDocumentTagsRequestUpdate from a dict
update_matching_document_tags_request_update_from_dict = UpdateMatchingDocumentTagsRequestUpdate.from_dict(update_matching_document_tags_request_update_dict)

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