Skip to content

Latest commit

 

History

History
53 lines (44 loc) · 2.22 KB

File metadata and controls

53 lines (44 loc) · 2.22 KB

QueueResource

Properties

Name Type Description Notes
id int [optional]
author_id int [optional]
book_id int [optional]
author AuthorResource [optional]
book BookResource [optional]
quality QualityModel [optional]
custom_formats List[CustomFormatResource] [optional]
custom_format_score int [optional]
size float [optional]
title str [optional]
sizeleft float [optional]
timeleft str [optional]
estimated_completion_time datetime [optional]
status str [optional]
tracked_download_status TrackedDownloadStatus [optional]
tracked_download_state TrackedDownloadState [optional]
status_messages List[TrackedDownloadStatusMessage] [optional]
error_message str [optional]
download_id str [optional]
protocol DownloadProtocol [optional]
download_client str [optional]
download_client_has_post_import_category bool [optional]
indexer str [optional]
output_path str [optional]
download_forced bool [optional]

Example

from readarr.models.queue_resource import QueueResource

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

# convert the object into a dict
queue_resource_dict = queue_resource_instance.to_dict()
# create an instance of QueueResource from a dict
queue_resource_from_dict = QueueResource.from_dict(queue_resource_dict)

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