Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.14 KB

GetFoldersResponse.md

File metadata and controls

31 lines (22 loc) · 1.14 KB

GetFoldersResponse

Properties

Name Type Description Notes
next str Next page of results token [optional]
previous str Previous page of results token [optional]
documents List[SearchResultDocument] List of search result documents [optional]

Example

from formkiq_client.models.get_folders_response import GetFoldersResponse

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

# convert the object into a dict
get_folders_response_dict = get_folders_response_instance.to_dict()
# create an instance of GetFoldersResponse from a dict
get_folders_response_from_dict = GetFoldersResponse.from_dict(get_folders_response_dict)

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