Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.1 KB

DocumentSearchRange.md

File metadata and controls

31 lines (22 loc) · 1.1 KB

DocumentSearchRange

Properties

Name Type Description Notes
start str Start of range query
end str End of range query
type SearchRangeDataType [optional] [default to SearchRangeDataType.STRING]

Example

from formkiq_client.models.document_search_range import DocumentSearchRange

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

# convert the object into a dict
document_search_range_dict = document_search_range_instance.to_dict()
# create an instance of DocumentSearchRange from a dict
document_search_range_from_dict = DocumentSearchRange.from_dict(document_search_range_dict)

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