| Name | Type | Description | Notes |
|---|---|---|---|
| id | int | [optional] | |
| title | str | [optional] | |
| original_title | str | [optional] | |
| original_language | Language | [optional] | |
| alternate_titles | List[AlternativeTitleResource] | [optional] | |
| secondary_year | int | [optional] | |
| secondary_year_source_id | int | [optional] | |
| sort_title | str | [optional] | |
| size_on_disk | int | [optional] | |
| status | MovieStatusType | [optional] | |
| overview | str | [optional] | |
| in_cinemas | datetime | [optional] | |
| physical_release | datetime | [optional] | |
| digital_release | datetime | [optional] | |
| physical_release_note | str | [optional] | |
| images | List[MediaCover] | [optional] | |
| website | str | [optional] | |
| remote_poster | str | [optional] | |
| year | int | [optional] | |
| you_tube_trailer_id | str | [optional] | |
| studio | str | [optional] | |
| path | str | [optional] | |
| quality_profile_id | int | [optional] | |
| has_file | bool | [optional] | |
| monitored | bool | [optional] | |
| minimum_availability | MovieStatusType | [optional] | |
| is_available | bool | [optional] | |
| folder_name | str | [optional] | |
| runtime | int | [optional] | |
| clean_title | str | [optional] | |
| imdb_id | str | [optional] | |
| tmdb_id | int | [optional] | |
| title_slug | str | [optional] | |
| root_folder_path | str | [optional] | |
| folder | str | [optional] | |
| certification | str | [optional] | |
| genres | List[str] | [optional] | |
| tags | List[int] | [optional] | |
| added | datetime | [optional] | |
| add_options | AddMovieOptions | [optional] | |
| ratings | Ratings | [optional] | |
| movie_file | MovieFileResource | [optional] | |
| collection | MovieCollectionResource | [optional] | |
| popularity | float | [optional] | |
| statistics | MovieStatisticsResource | [optional] |
from whisparr.models.movie_resource import MovieResource
# TODO update the JSON string below
json = "{}"
# create an instance of MovieResource from a JSON string
movie_resource_instance = MovieResource.from_json(json)
# print the JSON string representation of the object
print(MovieResource.to_json())
# convert the object into a dict
movie_resource_dict = movie_resource_instance.to_dict()
# create an instance of MovieResource from a dict
movie_resource_from_dict = MovieResource.from_dict(movie_resource_dict)