| Name |
Type |
Description |
Notes |
| id |
int |
The client ID |
[optional] |
| firstname |
str |
The client's first name |
[optional] |
| lastname |
str |
The client's last name |
[optional] |
| companyname |
str |
The client's company name |
[optional] |
| email |
str |
The client's email address |
[optional] |
| datecreated |
date |
The date the client was created |
[optional] |
| groupid |
int |
The client's group ID |
[optional] |
| status |
str |
The client's status (Active, Inactive, Closed) |
[optional] |
from whmcs_client.models.client_info import ClientInfo
# TODO update the JSON string below
json = "{}"
# create an instance of ClientInfo from a JSON string
client_info_instance = ClientInfo.from_json(json)
# print the JSON string representation of the object
print(ClientInfo.to_json())
# convert the object into a dict
client_info_dict = client_info_instance.to_dict()
# create an instance of ClientInfo from a dict
client_info_from_dict = ClientInfo.from_dict(client_info_dict)
[Back to Model list] [Back to API list] [Back to README]