| Name | Type | Description | Notes |
|---|---|---|---|
| id | int | [optional] | |
| movie_id | int | [optional] | |
| relative_path | str | [optional] | |
| path | str | [optional] | |
| size | int | [optional] | |
| date_added | datetime | [optional] | |
| scene_name | str | [optional] | |
| release_group | str | [optional] | |
| edition | str | [optional] | |
| languages | List[Language] | [optional] | |
| quality | QualityModel | [optional] | |
| custom_formats | List[CustomFormatResource] | [optional] | |
| custom_format_score | int | [optional] | |
| indexer_flags | int | [optional] | |
| media_info | MediaInfoResource | [optional] | |
| original_file_path | str | [optional] | |
| quality_cutoff_not_met | bool | [optional] |
from radarr.models.movie_file_resource import MovieFileResource
# TODO update the JSON string below
json = "{}"
# create an instance of MovieFileResource from a JSON string
movie_file_resource_instance = MovieFileResource.from_json(json)
# print the JSON string representation of the object
print(MovieFileResource.to_json())
# convert the object into a dict
movie_file_resource_dict = movie_file_resource_instance.to_dict()
# create an instance of MovieFileResource from a dict
movie_file_resource_from_dict = MovieFileResource.from_dict(movie_file_resource_dict)