Skip to content

Latest commit

 

History

History
40 lines (31 loc) · 1.98 KB

File metadata and controls

40 lines (31 loc) · 1.98 KB

ClientRequest

The client entity

Properties

Name Type Description Notes
name str Client's personal name (1 to 60 characters long).
company str The company name (0 to 60 characters long). [optional]
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. [optional]
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. [optional]
password str The password of the client account (5 to 14 characters long).
type str The type of the client account. Allowed values: reseller customer

Example

from plesk_client.models.client_request import ClientRequest

# TODO update the JSON string below
json = "{}"
# create an instance of ClientRequest from a JSON string
client_request_instance = ClientRequest.from_json(json)
# print the JSON string representation of the object
print(ClientRequest.to_json())

# convert the object into a dict
client_request_dict = client_request_instance.to_dict()
# create an instance of ClientRequest from a dict
client_request_from_dict = ClientRequest.from_dict(client_request_dict)

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