Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.27 KB

File metadata and controls

35 lines (26 loc) · 1.27 KB

MovieFileListResource

Properties

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

Example

from radarr.models.movie_file_list_resource import MovieFileListResource

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

# convert the object into a dict
movie_file_list_resource_dict = movie_file_list_resource_instance.to_dict()
# create an instance of MovieFileListResource from a dict
movie_file_list_resource_from_dict = MovieFileListResource.from_dict(movie_file_list_resource_dict)

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