| Name |
Type |
Description |
Notes |
| id |
int |
Unique identifier of the DNS record |
[optional] |
| type |
str |
The type of the DNS record |
[optional] |
| host |
str |
The IP address or name of a host, that will be used by DNS |
[optional] |
| value |
str |
The value that will be linked with the host value |
[optional] |
| opt |
str |
Optional information about the DNS record |
[optional] |
| ttl |
int |
The amount of time (in seconds) that slave DNS servers should store the record in a cache |
[optional] |
from plesk_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]