Skip to content

Latest commit

 

History

History
45 lines (36 loc) · 1.78 KB

EpisodeFileResource.md

File metadata and controls

45 lines (36 loc) · 1.78 KB

EpisodeFileResource

Properties

Name Type Description Notes
id int [optional]
series_id int [optional]
season_number int [optional]
relative_path str [optional]
path str [optional]
size int [optional]
date_added datetime [optional]
scene_name str [optional]
release_group str [optional]
languages List[Language] [optional]
quality QualityModel [optional]
custom_formats List[CustomFormatResource] [optional]
custom_format_score int [optional]
indexer_flags int [optional]
release_type ReleaseType [optional]
media_info MediaInfoResource [optional]
quality_cutoff_not_met bool [optional]

Example

from sonarr.models.episode_file_resource import EpisodeFileResource

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

# convert the object into a dict
episode_file_resource_dict = episode_file_resource_instance.to_dict()
# create an instance of EpisodeFileResource from a dict
episode_file_resource_from_dict = EpisodeFileResource.from_dict(episode_file_resource_dict)

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