Skip to content

Latest commit

 

History

History
56 lines (47 loc) · 2.37 KB

QueueResource.md

File metadata and controls

56 lines (47 loc) · 2.37 KB

QueueResource

Properties

Name Type Description Notes
id int [optional]
artist_id int [optional]
album_id int [optional]
artist ArtistResource [optional]
album AlbumResource [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]
added 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]
track_file_count int [optional]
track_has_file_count int [optional]
download_forced bool [optional]

Example

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