Generic Error Message
| Name | Type | Description | Notes |
|---|---|---|---|
| s_error_message | str | The message giving details about the error | |
| e_error_code | FieldEErrorCode | ||
| a_s_error_messagedetail | List[str] | More error message detail | [optional] |
from eZmaxApi.models.common_response_error_too_many_requests import CommonResponseErrorTooManyRequests
# TODO update the JSON string below
json = "{}"
# create an instance of CommonResponseErrorTooManyRequests from a JSON string
common_response_error_too_many_requests_instance = CommonResponseErrorTooManyRequests.from_json(json)
# print the JSON string representation of the object
print(CommonResponseErrorTooManyRequests.to_json())
# convert the object into a dict
common_response_error_too_many_requests_dict = common_response_error_too_many_requests_instance.to_dict()
# create an instance of CommonResponseErrorTooManyRequests from a dict
common_response_error_too_many_requests_from_dict = CommonResponseErrorTooManyRequests.from_dict(common_response_error_too_many_requests_dict)