Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.22 KB

File metadata and controls

32 lines (23 loc) · 1.22 KB

PaginatedFileDownloadTokenList

Properties

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

Example

from aiochris_oag.models.paginated_file_download_token_list import PaginatedFileDownloadTokenList

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

# convert the object into a dict
paginated_file_download_token_list_dict = paginated_file_download_token_list_instance.to_dict()
# create an instance of PaginatedFileDownloadTokenList from a dict
paginated_file_download_token_list_from_dict = PaginatedFileDownloadTokenList.from_dict(paginated_file_download_token_list_dict)

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