| Name |
Type |
Description |
Notes |
| id |
int |
The client's ID. |
|
| login |
str |
The login name of the client account owner. |
|
| guid |
str |
The global user ID of the client account just added to Plesk. |
|
| external_id |
str |
The client GUID in the Plesk components (for example, Business Manager). |
|
from plesk_client.models.owner_client_reference import OwnerClientReference
# TODO update the JSON string below
json = "{}"
# create an instance of OwnerClientReference from a JSON string
owner_client_reference_instance = OwnerClientReference.from_json(json)
# print the JSON string representation of the object
print(OwnerClientReference.to_json())
# convert the object into a dict
owner_client_reference_dict = owner_client_reference_instance.to_dict()
# create an instance of OwnerClientReference from a dict
owner_client_reference_from_dict = OwnerClientReference.from_dict(owner_client_reference_dict)
[Back to Model list] [Back to API list] [Back to README]