Plesk administrator information
| Name | Type | Description | Notes |
|---|---|---|---|
| name | str | The administrator's personal name. | |
| str | The administrator's e-mail address. | ||
| company | str | The administrator's company name. | [optional] |
| phone | str | The administrator's phone number. | [optional] |
| fax | str | The administrator's fax number. | [optional] |
| address | str | The administrator's street address. | [optional] |
| city | str | The name of the city where administrator lives. | [optional] |
| state | str | The name of state (for US citizens) or province where administrator lives. | [optional] |
| post_code | str | The administrator's zip/postal code. | [optional] |
| country | str | The name of the country where administrator lives. | [optional] |
| send_announce | bool | It specifies whether Plesk announcement messages are sent to the administrator's e-mail. | [optional] |
| locale | str | The locale used by the administrator. | [optional] |
| multiple_sessions | bool | It specifies the information if the administrator has multiple sessions in Plesk. | [optional] |
from plesk_client.models.admin import Admin
# TODO update the JSON string below
json = "{}"
# create an instance of Admin from a JSON string
admin_instance = Admin.from_json(json)
# print the JSON string representation of the object
print(Admin.to_json())
# convert the object into a dict
admin_dict = admin_instance.to_dict()
# create an instance of Admin from a dict
admin_from_dict = Admin.from_dict(admin_dict)