| 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] |
| discography |
bool |
|
[optional] |
| scene_source |
bool |
|
[optional] |
| air_date |
str |
|
[optional] |
| author_name |
str |
|
[optional] |
| book_title |
str |
|
[optional] |
| approved |
bool |
|
[optional] |
| temporarily_rejected |
bool |
|
[optional] |
| rejected |
bool |
|
[optional] |
| rejections |
List[str] |
|
[optional] |
| publish_date |
datetime |
|
[optional] |
| comment_url |
str |
|
[optional] |
| download_url |
str |
|
[optional] |
| info_url |
str |
|
[optional] |
| download_allowed |
bool |
|
[optional] |
| release_weight |
int |
|
[optional] |
| custom_formats |
List[CustomFormatResource] |
|
[optional] |
| custom_format_score |
int |
|
[optional] |
| magnet_url |
str |
|
[optional] |
| info_hash |
str |
|
[optional] |
| seeders |
int |
|
[optional] |
| leechers |
int |
|
[optional] |
| protocol |
DownloadProtocol |
|
[optional] |
| indexer_flags |
int |
|
[optional] |
| author_id |
int |
|
[optional] |
| book_id |
int |
|
[optional] |
| download_client_id |
int |
|
[optional] |
| download_client |
str |
|
[optional] |
from readarr.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]