Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.05 KB

MatchDocumentTag.md

File metadata and controls

32 lines (23 loc) · 1.05 KB

MatchDocumentTag

Match Document Tag

Properties

Name Type Description Notes
key str Tag key
begins_with str Searches for strings that begin with [optional]
eq str Searches for strings that eq [optional]

Example

from formkiq_client.models.match_document_tag import MatchDocumentTag

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

# convert the object into a dict
match_document_tag_dict = match_document_tag_instance.to_dict()
# create an instance of MatchDocumentTag from a dict
match_document_tag_from_dict = MatchDocumentTag.from_dict(match_document_tag_dict)

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