mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2025-12-06 06:26:51 +00:00
972 B
972 B
DnsServersRequest
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| dns_servers | List[str] | A list of DNS server FQDN. | [optional] |
Example
from instant_tests.models.dns_servers_request import DnsServersRequest
# TODO update the JSON string below
json = "{}"
# create an instance of DnsServersRequest from a JSON string
dns_servers_request_instance = DnsServersRequest.from_json(json)
# print the JSON string representation of the object
print(DnsServersRequest.to_json())
# convert the object into a dict
dns_servers_request_dict = dns_servers_request_instance.to_dict()
# create an instance of DnsServersRequest from a dict
dns_servers_request_from_dict = DnsServersRequest.from_dict(dns_servers_request_dict)