Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1 KB

File metadata and controls

29 lines (20 loc) · 1 KB

DocumentSearchFilename

Properties

Name Type Description Notes
begins_with str Searches for a filename [optional]

Example

from formkiq_client.models.document_search_filename import DocumentSearchFilename

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

# convert the object into a dict
document_search_filename_dict = document_search_filename_instance.to_dict()
# create an instance of DocumentSearchFilename from a dict
document_search_filename_from_dict = DocumentSearchFilename.from_dict(document_search_filename_dict)

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