Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.08 KB

File metadata and controls

31 lines (22 loc) · 1.08 KB

NetworkSettingsDnsCache

Properties

Name Type Description Notes
enabled bool [optional]
force_min_ttl float [optional]
force_max_ttl float [optional]

Example

from seerr.models.network_settings_dns_cache import NetworkSettingsDnsCache

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

# convert the object into a dict
network_settings_dns_cache_dict = network_settings_dns_cache_instance.to_dict()
# create an instance of NetworkSettingsDnsCache from a dict
network_settings_dns_cache_from_dict = NetworkSettingsDnsCache.from_dict(network_settings_dns_cache_dict)

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