Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.15 KB

File metadata and controls

29 lines (20 loc) · 1.15 KB

GetClientsResponseAllOfClients

Properties

Name Type Description Notes
client List[ClientInfo] Array of client information [optional]

Example

from whmcs_client.models.get_clients_response_all_of_clients import GetClientsResponseAllOfClients

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

# convert the object into a dict
get_clients_response_all_of_clients_dict = get_clients_response_all_of_clients_instance.to_dict()
# create an instance of GetClientsResponseAllOfClients from a dict
get_clients_response_all_of_clients_from_dict = GetClientsResponseAllOfClients.from_dict(get_clients_response_all_of_clients_dict)

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