| Name | Type | Description | Notes |
|---|---|---|---|
| image_cache | GetCache2XXResponseImageCache | [optional] | |
| dns_cache | GetCache2XXResponseDnsCache | [optional] | |
| api_caches | List[GetCache2XXResponseApiCachesInner] | [optional] |
from seerr.models.get_cache2_xx_response import GetCache2XXResponse
# TODO update the JSON string below
json = "{}"
# create an instance of GetCache2XXResponse from a JSON string
get_cache2_xx_response_instance = GetCache2XXResponse.from_json(json)
# print the JSON string representation of the object
print(GetCache2XXResponse.to_json())
# convert the object into a dict
get_cache2_xx_response_dict = get_cache2_xx_response_instance.to_dict()
# create an instance of GetCache2XXResponse from a dict
get_cache2_xx_response_from_dict = GetCache2XXResponse.from_dict(get_cache2_xx_response_dict)