Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.29 KB

File metadata and controls

33 lines (24 loc) · 1.29 KB

DnsRecordRequest

Properties

Name Type Description Notes
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]

Example

from plesk_client.models.dns_record_request import DnsRecordRequest

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

# convert the object into a dict
dns_record_request_dict = dns_record_request_instance.to_dict()
# create an instance of DnsRecordRequest from a dict
dns_record_request_from_dict = DnsRecordRequest.from_dict(dns_record_request_dict)

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