Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.22 KB

EpisodeFileListResource.md

File metadata and controls

33 lines (24 loc) · 1.22 KB

EpisodeFileListResource

Properties

Name Type Description Notes
episode_file_ids List[int] [optional]
languages List[Language] [optional]
quality QualityModel [optional]
scene_name str [optional]
release_group str [optional]

Example

from sonarr.models.episode_file_list_resource import EpisodeFileListResource

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

# convert the object into a dict
episode_file_list_resource_dict = episode_file_list_resource_instance.to_dict()
# create an instance of EpisodeFileListResource from a dict
episode_file_list_resource_from_dict = EpisodeFileListResource.from_dict(episode_file_list_resource_dict)

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