Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.27 KB

CommonResponseErrorTooManyRequests.md

File metadata and controls

31 lines (22 loc) · 1.27 KB

CommonResponseErrorTooManyRequests

Generic Error Message

Properties

Name Type Description Notes
s_error_message str The message giving details about the error
e_error_code FieldEErrorCode

Example

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_form_dict = common_response_error_too_many_requests.from_dict(common_response_error_too_many_requests_dict)

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