Skip to content

Latest commit

 

History

History
30 lines (22 loc) · 990 Bytes

File metadata and controls

30 lines (22 loc) · 990 Bytes

Subdomain

Properties

Name Type Description Notes
fqdn object Полное имя поддомена.
id object ID поддомена.
linked_ip object Привязанный к поддомену IP-адрес.

Example

from timeweb_cloud_api.models.subdomain import Subdomain

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

# convert the object into a dict
subdomain_dict = subdomain_instance.to_dict()
# create an instance of Subdomain from a dict
subdomain_form_dict = subdomain.from_dict(subdomain_dict)

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