Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.39 KB

UpdateMatchingDocumentTagsRequest.md

File metadata and controls

31 lines (22 loc) · 1.39 KB

UpdateMatchingDocumentTagsRequest

Add/Update of multiple document tag(s) based on document(s) that have the matching tag.

Properties

Name Type Description Notes
match UpdateMatchingDocumentTagsRequestMatch
update UpdateMatchingDocumentTagsRequestUpdate

Example

from formkiq_client.models.update_matching_document_tags_request import UpdateMatchingDocumentTagsRequest

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

# convert the object into a dict
update_matching_document_tags_request_dict = update_matching_document_tags_request_instance.to_dict()
# create an instance of UpdateMatchingDocumentTagsRequest from a dict
update_matching_document_tags_request_from_dict = UpdateMatchingDocumentTagsRequest.from_dict(update_matching_document_tags_request_dict)

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