Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.37 KB

BlocklistResourcePagingResource.md

File metadata and controls

34 lines (25 loc) · 1.37 KB

BlocklistResourcePagingResource

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

Example

from lidarr.models.blocklist_resource_paging_resource import BlocklistResourcePagingResource

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

# convert the object into a dict
blocklist_resource_paging_resource_dict = blocklist_resource_paging_resource_instance.to_dict()
# create an instance of BlocklistResourcePagingResource from a dict
blocklist_resource_paging_resource_from_dict = BlocklistResourcePagingResource.from_dict(blocklist_resource_paging_resource_dict)

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