| Name |
Type |
Description |
Notes |
| host |
str |
DNS record host/name |
|
| type |
str |
DNS record type (A, MX, TXT, etc.) |
|
| value |
str |
DNS record value |
|
| priority |
str |
DNS record priority (may be "N/A" for non-MX records) |
|
| ttl |
int |
DNS record TTL in seconds |
|
from workplace_client.models.dns_record import DnsRecord
# TODO update the JSON string below
json = "{}"
# create an instance of DnsRecord from a JSON string
dns_record_instance = DnsRecord.from_json(json)
# print the JSON string representation of the object
print(DnsRecord.to_json())
# convert the object into a dict
dns_record_dict = dns_record_instance.to_dict()
# create an instance of DnsRecord from a dict
dns_record_from_dict = DnsRecord.from_dict(dns_record_dict)
[Back to Model list] [Back to API list] [Back to README]