| Name | Type | Description | Notes |
|---|---|---|---|
| tmdb | GetCache2XXResponseImageCacheTmdb | [optional] |
from overseerr.models.get_cache2_xx_response_image_cache import GetCache2XXResponseImageCache
# TODO update the JSON string below
json = "{}"
# create an instance of GetCache2XXResponseImageCache from a JSON string
get_cache2_xx_response_image_cache_instance = GetCache2XXResponseImageCache.from_json(json)
# print the JSON string representation of the object
print(GetCache2XXResponseImageCache.to_json())
# convert the object into a dict
get_cache2_xx_response_image_cache_dict = get_cache2_xx_response_image_cache_instance.to_dict()
# create an instance of GetCache2XXResponseImageCache from a dict
get_cache2_xx_response_image_cache_from_dict = GetCache2XXResponseImageCache.from_dict(get_cache2_xx_response_image_cache_dict)