Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.45 KB

File metadata and controls

31 lines (22 loc) · 1.45 KB

ListFoldersResponse

Response payload for listing Google Drive folders. Returns a list of folders available at the specified path, enabling users to browse and select folders for sync configuration.

Properties

Name Type Description Notes
results List[FolderItem] List of folders found at the specified parent path. Only includes folders (not files). Empty list if no folders found or path doesn't exist.
parent_path str The parent folder path that was queried. This is the path specified in the request (or '/' for root). Use this to show breadcrumb navigation in UI.

Example

from mixpeek.models.list_folders_response import ListFoldersResponse

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

# convert the object into a dict
list_folders_response_dict = list_folders_response_instance.to_dict()
# create an instance of ListFoldersResponse from a dict
list_folders_response_from_dict = ListFoldersResponse.from_dict(list_folders_response_dict)

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