Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.21 KB

File metadata and controls

31 lines (22 loc) · 1.21 KB

GetCache2XXResponse

Properties

Name Type Description Notes
image_cache GetCache2XXResponseImageCache [optional]
dns_cache GetCache2XXResponseDnsCache [optional]
api_caches List[GetCache2XXResponseApiCachesInner] [optional]

Example

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)

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