Skip to content

Latest commit

 

History

History
52 lines (43 loc) · 2.2 KB

File metadata and controls

52 lines (43 loc) · 2.2 KB

QueueResource

Properties

Name Type Description Notes
id int [optional]
movie_id int [optional]
movie MovieResource [optional]
languages List[Language] [optional]
quality QualityModel [optional]
custom_formats List[CustomFormatResource] [optional]
custom_format_score int [optional]
size float [optional]
title str [optional]
estimated_completion_time datetime [optional]
added datetime [optional]
status QueueStatus [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]
sizeleft float [optional]
timeleft str [optional]

Example

from radarr.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]