Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.08 KB

File metadata and controls

32 lines (23 loc) · 1.08 KB

PaginatedPACSFileList

Properties

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

Example

from aiochris_oag.models.paginated_pacs_file_list import PaginatedPACSFileList

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

# convert the object into a dict
paginated_pacs_file_list_dict = paginated_pacs_file_list_instance.to_dict()
# create an instance of PaginatedPACSFileList from a dict
paginated_pacs_file_list_from_dict = PaginatedPACSFileList.from_dict(paginated_pacs_file_list_dict)

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