| Name | Type | Description | Notes |
|---|---|---|---|
| cache_timeout | int | The cached timeout for the DNS Resolver | [optional] |
| enable_perconnect | bool | The enable perconnection value. | [optional] |
| links | List[APILink] | [optional] | |
| name_servers | List[NameServer] | A list of name servers. | [optional] |
from cyperf.models.dns_resolver import DNSResolver
# TODO update the JSON string below
json = "{}"
# create an instance of DNSResolver from a JSON string
dns_resolver_instance = DNSResolver.from_json(json)
# print the JSON string representation of the object
print(DNSResolver.to_json())
# convert the object into a dict
dns_resolver_dict = dns_resolver_instance.to_dict()
# create an instance of DNSResolver from a dict
dns_resolver_from_dict = DNSResolver.from_dict(dns_resolver_dict)