Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.12 KB

File metadata and controls

32 lines (23 loc) · 1.12 KB

AddClientResponse

Properties

Name Type Description Notes
result str [optional]
message str Response message [optional]
clientid int The ID of the newly created client [optional]
owner_user_id int The ID of the user that owns the client [optional]

Example

from whmcs_client.models.add_client_response import AddClientResponse

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

# convert the object into a dict
add_client_response_dict = add_client_response_instance.to_dict()
# create an instance of AddClientResponse from a dict
add_client_response_from_dict = AddClientResponse.from_dict(add_client_response_dict)

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