Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.15 KB

File metadata and controls

29 lines (20 loc) · 1.15 KB

GetCache2XXResponseImageCache

Properties

Name Type Description Notes
tmdb GetCache2XXResponseImageCacheTmdb [optional]

Example

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)

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