Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.28 KB

LogResourcePagingResource.md

File metadata and controls

34 lines (25 loc) · 1.28 KB

LogResourcePagingResource

Properties

Name Type Description Notes
page int [optional]
page_size int [optional]
sort_key str [optional]
sort_direction SortDirection [optional]
total_records int [optional]
records List[LogResource] [optional]

Example

from sonarr.models.log_resource_paging_resource import LogResourcePagingResource

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

# convert the object into a dict
log_resource_paging_resource_dict = log_resource_paging_resource_instance.to_dict()
# create an instance of LogResourcePagingResource from a dict
log_resource_paging_resource_from_dict = LogResourcePagingResource.from_dict(log_resource_paging_resource_dict)

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