Skip to content

Latest commit

 

History

History
32 lines (24 loc) · 1.12 KB

File metadata and controls

32 lines (24 loc) · 1.12 KB

CreateDns

Properties

Name Type Description Notes
priority object Приоритет DNS-записи. [optional]
subdomain object Полное имя поддомена. [optional]
type object Тип DNS-записи.
value object Значение DNS-записи.
ttl object Время жизни DNS-записи. [optional]

Example

from timeweb_cloud_api.models.create_dns import CreateDns

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

# convert the object into a dict
create_dns_dict = create_dns_instance.to_dict()
# create an instance of CreateDns from a dict
create_dns_form_dict = create_dns.from_dict(create_dns_dict)

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