Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.31 KB

File metadata and controls

34 lines (25 loc) · 1.31 KB

AlbumResourcePagingResource

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[AlbumResource] [optional]

Example

from lidarr.models.album_resource_paging_resource import AlbumResourcePagingResource

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

# convert the object into a dict
album_resource_paging_resource_dict = album_resource_paging_resource_instance.to_dict()
# create an instance of AlbumResourcePagingResource from a dict
album_resource_paging_resource_from_dict = AlbumResourcePagingResource.from_dict(album_resource_paging_resource_dict)

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