Initial server setup parameters
| Name | Type | Description | Notes |
|---|---|---|---|
| admin | Admin | ||
| password | str | The new Plesk Administrator's password that will replace the default one. | |
| server_name | str | The full host name. | [optional] |
from plesk_client.models.server_init import ServerInit
# TODO update the JSON string below
json = "{}"
# create an instance of ServerInit from a JSON string
server_init_instance = ServerInit.from_json(json)
# print the JSON string representation of the object
print(ServerInit.to_json())
# convert the object into a dict
server_init_dict = server_init_instance.to_dict()
# create an instance of ServerInit from a dict
server_init_from_dict = ServerInit.from_dict(server_init_dict)