Name | Type | Description | Notes |
---|---|---|---|
id | int | [optional] | |
path | str | [optional] | |
relative_path | str | [optional] | |
folder_name | str | [optional] | |
name | str | [optional] | |
size | int | [optional] | |
series | SeriesResource | [optional] | |
season_number | int | [optional] | |
episodes | List[EpisodeResource] | [optional] | |
episode_file_id | int | [optional] | |
release_group | str | [optional] | |
quality | QualityModel | [optional] | |
languages | List[Language] | [optional] | |
quality_weight | int | [optional] | |
download_id | str | [optional] | |
custom_formats | List[CustomFormatResource] | [optional] | |
custom_format_score | int | [optional] | |
indexer_flags | int | [optional] | |
release_type | ReleaseType | [optional] | |
rejections | List[ImportRejectionResource] | [optional] |
from sonarr.models.manual_import_resource import ManualImportResource
# TODO update the JSON string below
json = "{}"
# create an instance of ManualImportResource from a JSON string
manual_import_resource_instance = ManualImportResource.from_json(json)
# print the JSON string representation of the object
print(ManualImportResource.to_json())
# convert the object into a dict
manual_import_resource_dict = manual_import_resource_instance.to_dict()
# create an instance of ManualImportResource from a dict
manual_import_resource_from_dict = ManualImportResource.from_dict(manual_import_resource_dict)