| Name |
Type |
Description |
Notes |
| title |
str |
|
[optional] |
| tmdb_id |
int |
|
[optional] |
from whisparr.models.movie_collection_resource import MovieCollectionResource
# TODO update the JSON string below
json = "{}"
# create an instance of MovieCollectionResource from a JSON string
movie_collection_resource_instance = MovieCollectionResource.from_json(json)
# print the JSON string representation of the object
print(MovieCollectionResource.to_json())
# convert the object into a dict
movie_collection_resource_dict = movie_collection_resource_instance.to_dict()
# create an instance of MovieCollectionResource from a dict
movie_collection_resource_from_dict = MovieCollectionResource.from_dict(movie_collection_resource_dict)
[Back to Model list] [Back to API list] [Back to README]