Name |
Type |
Description |
Notes |
next |
str |
Next page of results token |
[optional] |
previous |
str |
Previous page of results token |
[optional] |
documents |
List[Document] |
List of documents |
[optional] |
from formkiq_client.models.get_documents_response import GetDocumentsResponse
# TODO update the JSON string below
json = "{}"
# create an instance of GetDocumentsResponse from a JSON string
get_documents_response_instance = GetDocumentsResponse.from_json(json)
# print the JSON string representation of the object
print(GetDocumentsResponse.to_json())
# convert the object into a dict
get_documents_response_dict = get_documents_response_instance.to_dict()
# create an instance of GetDocumentsResponse from a dict
get_documents_response_from_dict = GetDocumentsResponse.from_dict(get_documents_response_dict)
[Back to Model list] [Back to API list] [Back to README]