Skip to content

Latest commit

 

History

History
39 lines (30 loc) · 2.01 KB

File metadata and controls

39 lines (30 loc) · 2.01 KB

ClientUpdateRequest

The client entity

Properties

Name Type Description Notes
name str Client's personal name (1 to 60 characters long). [optional]
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). [optional]
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). [optional]
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). [optional]

Example

from plesk_client.models.client_update_request import ClientUpdateRequest

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

# convert the object into a dict
client_update_request_dict = client_update_request_instance.to_dict()
# create an instance of ClientUpdateRequest from a dict
client_update_request_from_dict = ClientUpdateRequest.from_dict(client_update_request_dict)

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