Name |
Type |
Description |
Notes |
id |
int |
|
[optional] |
guid |
str |
|
[optional] |
quality |
QualityModel |
|
[optional] |
quality_weight |
int |
|
[optional] |
age |
int |
|
[optional] |
age_hours |
float |
|
[optional] |
age_minutes |
float |
|
[optional] |
size |
int |
|
[optional] |
indexer_id |
int |
|
[optional] |
indexer |
str |
|
[optional] |
release_group |
str |
|
[optional] |
sub_group |
str |
|
[optional] |
release_hash |
str |
|
[optional] |
title |
str |
|
[optional] |
full_season |
bool |
|
[optional] |
scene_source |
bool |
|
[optional] |
season_number |
int |
|
[optional] |
languages |
List[Language] |
|
[optional] |
language_weight |
int |
|
[optional] |
air_date |
str |
|
[optional] |
series_title |
str |
|
[optional] |
episode_numbers |
List[int] |
|
[optional] |
absolute_episode_numbers |
List[int] |
|
[optional] |
mapped_season_number |
int |
|
[optional] |
mapped_episode_numbers |
List[int] |
|
[optional] |
mapped_absolute_episode_numbers |
List[int] |
|
[optional] |
mapped_series_id |
int |
|
[optional] |
mapped_episode_info |
List[ReleaseEpisodeResource] |
|
[optional] |
approved |
bool |
|
[optional] |
temporarily_rejected |
bool |
|
[optional] |
rejected |
bool |
|
[optional] |
tvdb_id |
int |
|
[optional] |
tv_rage_id |
int |
|
[optional] |
imdb_id |
str |
|
[optional] |
rejections |
List[str] |
|
[optional] |
publish_date |
datetime |
|
[optional] |
comment_url |
str |
|
[optional] |
download_url |
str |
|
[optional] |
info_url |
str |
|
[optional] |
episode_requested |
bool |
|
[optional] |
download_allowed |
bool |
|
[optional] |
release_weight |
int |
|
[optional] |
custom_formats |
List[CustomFormatResource] |
|
[optional] |
custom_format_score |
int |
|
[optional] |
scene_mapping |
AlternateTitleResource |
|
[optional] |
magnet_url |
str |
|
[optional] |
info_hash |
str |
|
[optional] |
seeders |
int |
|
[optional] |
leechers |
int |
|
[optional] |
protocol |
DownloadProtocol |
|
[optional] |
indexer_flags |
int |
|
[optional] |
is_daily |
bool |
|
[optional] |
is_absolute_numbering |
bool |
|
[optional] |
is_possible_special_episode |
bool |
|
[optional] |
special |
bool |
|
[optional] |
series_id |
int |
|
[optional] |
episode_id |
int |
|
[optional] |
episode_ids |
List[int] |
|
[optional] |
download_client_id |
int |
|
[optional] |
download_client |
str |
|
[optional] |
should_override |
bool |
|
[optional] |
from sonarr.models.release_resource import ReleaseResource
# TODO update the JSON string below
json = "{}"
# create an instance of ReleaseResource from a JSON string
release_resource_instance = ReleaseResource.from_json(json)
# print the JSON string representation of the object
print(ReleaseResource.to_json())
# convert the object into a dict
release_resource_dict = release_resource_instance.to_dict()
# create an instance of ReleaseResource from a dict
release_resource_from_dict = ReleaseResource.from_dict(release_resource_dict)
[Back to Model list] [Back to API list] [Back to README]