Skip to content
This repository was archived by the owner on Oct 12, 2025. It is now read-only.

Latest commit

 

History

History
executable file
·
32 lines (23 loc) · 1.13 KB

File metadata and controls

executable file
·
32 lines (23 loc) · 1.13 KB

DataFolderList200Response

Properties

Name Type Description Notes
count int
next str [optional]
previous str [optional]
results List[Folder]

Example

from epiccore.models.data_folder_list200_response import DataFolderList200Response

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

# convert the object into a dict
data_folder_list200_response_dict = data_folder_list200_response_instance.to_dict()
# create an instance of DataFolderList200Response from a dict
data_folder_list200_response_form_dict = data_folder_list200_response.from_dict(data_folder_list200_response_dict)

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