| Name |
Type |
Description |
Notes |
| name |
str |
Domain alias name. |
|
| ascii_name |
str |
Domain alias name in ASCII. |
|
| web |
bool |
Web service status. |
|
| dns |
bool |
DNS service status. |
|
| mail |
bool |
Mail service status. |
|
| seo_redirect |
bool |
301 redirect to HTTPS status. |
|
from plesk_client.models.domain_alias import DomainAlias
# TODO update the JSON string below
json = "{}"
# create an instance of DomainAlias from a JSON string
domain_alias_instance = DomainAlias.from_json(json)
# print the JSON string representation of the object
print(DomainAlias.to_json())
# convert the object into a dict
domain_alias_dict = domain_alias_instance.to_dict()
# create an instance of DomainAlias from a dict
domain_alias_from_dict = DomainAlias.from_dict(domain_alias_dict)
[Back to Model list] [Back to API list] [Back to README]