DNS-запись.
| Name | Type | Description | Notes |
|---|---|---|---|
| type | object | Тип DNS-записи. | |
| id | object | ID DNS-записи. | [optional] |
| data | DnsRecordData | ||
| ttl | object | Время жизни DNS-записи. | [optional] |
from timeweb_cloud_api.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_form_dict = dns_record.from_dict(dns_record_dict)