| Name |
Type |
Description |
Notes |
| result |
str |
|
[optional] |
| message |
str |
Response message |
[optional] |
from whmcs_client.models.whmcs_error_response import WHMCSErrorResponse
# TODO update the JSON string below
json = "{}"
# create an instance of WHMCSErrorResponse from a JSON string
whmcs_error_response_instance = WHMCSErrorResponse.from_json(json)
# print the JSON string representation of the object
print(WHMCSErrorResponse.to_json())
# convert the object into a dict
whmcs_error_response_dict = whmcs_error_response_instance.to_dict()
# create an instance of WHMCSErrorResponse from a dict
whmcs_error_response_from_dict = WHMCSErrorResponse.from_dict(whmcs_error_response_dict)
[Back to Model list] [Back to API list] [Back to README]