Skip to content

Latest commit

 

History

History
43 lines (34 loc) · 1.85 KB

ManualImportReprocessResource.md

File metadata and controls

43 lines (34 loc) · 1.85 KB

ManualImportReprocessResource

Properties

Name Type Description Notes
id int [optional]
path str [optional]
series_id int [optional]
season_number int [optional]
episodes List[EpisodeResource] [optional]
episode_ids List[int] [optional]
quality QualityModel [optional]
languages List[Language] [optional]
release_group str [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[Rejection] [optional]

Example

from sonarr.models.manual_import_reprocess_resource import ManualImportReprocessResource

# TODO update the JSON string below
json = "{}"
# create an instance of ManualImportReprocessResource from a JSON string
manual_import_reprocess_resource_instance = ManualImportReprocessResource.from_json(json)
# print the JSON string representation of the object
print(ManualImportReprocessResource.to_json())

# convert the object into a dict
manual_import_reprocess_resource_dict = manual_import_reprocess_resource_instance.to_dict()
# create an instance of ManualImportReprocessResource from a dict
manual_import_reprocess_resource_from_dict = ManualImportReprocessResource.from_dict(manual_import_reprocess_resource_dict)

[Back to Model list] [Back to API list] [Back to README]