The client entity
| Name | Type | Description | Notes |
|---|---|---|---|
| id | int | The client's ID. | |
| created | date | Creation date. | |
| name | str | Client's personal name (1 to 60 characters long). | |
| company | str | The company name (0 to 60 characters long). | |
| login | str | The login name of the client account (1 to 60 characters long). | |
| status | int | The current status of the client account. Allowed values: 0 (active) | 16 (disabled by admin) |
| str | The email address of the client account owner (0 to 255 characters long). | ||
| locale | str | The locale used on the client account. Default value: en-US. | |
| guid | str | The global user ID of the client account just added to Plesk. | |
| owner_login | str | The login name of a client account owner. If the client account owner is Plesk Administrator, specify the admin login name. | [optional] |
| external_id | str | The client GUID in the Plesk components (for example, Business Manager). | [optional] |
| description | str | The description for the client account. | |
| type | str | The type of the client account. Allowed values: reseller | customer |
from plesk_client.models.client import Client
# TODO update the JSON string below
json = "{}"
# create an instance of Client from a JSON string
client_instance = Client.from_json(json)
# print the JSON string representation of the object
print(Client.to_json())
# convert the object into a dict
client_dict = client_instance.to_dict()
# create an instance of Client from a dict
client_from_dict = Client.from_dict(client_dict)