Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.28 KB

DocumentSearchMatchAttribute.md

File metadata and controls

32 lines (23 loc) · 1.28 KB

DocumentSearchMatchAttribute

Properties

Name Type Description Notes
key str Tag key [optional]
string_value str Attribute with string value [optional]
number_value float Attribute with number value [optional]
boolean_value bool Attribute with boolean value [optional]

Example

from formkiq_client.models.document_search_match_attribute import DocumentSearchMatchAttribute

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

# convert the object into a dict
document_search_match_attribute_dict = document_search_match_attribute_instance.to_dict()
# create an instance of DocumentSearchMatchAttribute from a dict
document_search_match_attribute_from_dict = DocumentSearchMatchAttribute.from_dict(document_search_match_attribute_dict)

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