Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.24 KB

File metadata and controls

30 lines (21 loc) · 1.24 KB

GetCache2XXResponseDnsCache

Properties

Name Type Description Notes
stats GetCache2XXResponseDnsCacheStats [optional]
entries Dict[str, GetCache2XXResponseDnsCacheEntriesValue] [optional]

Example

from seerr.models.get_cache2_xx_response_dns_cache import GetCache2XXResponseDnsCache

# TODO update the JSON string below
json = "{}"
# create an instance of GetCache2XXResponseDnsCache from a JSON string
get_cache2_xx_response_dns_cache_instance = GetCache2XXResponseDnsCache.from_json(json)
# print the JSON string representation of the object
print(GetCache2XXResponseDnsCache.to_json())

# convert the object into a dict
get_cache2_xx_response_dns_cache_dict = get_cache2_xx_response_dns_cache_instance.to_dict()
# create an instance of GetCache2XXResponseDnsCache from a dict
get_cache2_xx_response_dns_cache_from_dict = GetCache2XXResponseDnsCache.from_dict(get_cache2_xx_response_dns_cache_dict)

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