| Name | Type | Description | Notes |
|---|---|---|---|
| id | int | [optional] | |
| series_id | int | [optional] | |
| episode_id | int | [optional] | |
| season_number | int | [optional] | |
| series | SeriesResource | [optional] | |
| episode | EpisodeResource | [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] | |
| episode_has_file | bool | [optional] | |
| sizeleft | float | [optional] | |
| timeleft | str | [optional] |
from sonarr.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)