Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 1.29 KB

File metadata and controls

37 lines (28 loc) · 1.29 KB

DomainResponse

Properties

Name Type Description Notes
id int Domain ID.
name str Domain name.
ascii_name str Domain display name.
hosting_type str Domain hosting type.
base_domain_id int Base domain ID.
www_root str WWW Root on filesystem
guid str Domain GUID.
created date Creation date.
aliases List[DomainAlias] Domain aliases that point to this domain. [optional]

Example

from plesk_client.models.domain_response import DomainResponse

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

# convert the object into a dict
domain_response_dict = domain_response_instance.to_dict()
# create an instance of DomainResponse from a dict
domain_response_from_dict = DomainResponse.from_dict(domain_response_dict)

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