Skip to content

Latest commit

 

History

History
42 lines (33 loc) · 1.93 KB

File metadata and controls

42 lines (33 loc) · 1.93 KB

Client

The client entity

Properties

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)
email 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

Example

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)

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