Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.06 KB

CommonResponseError.md

File metadata and controls

31 lines (22 loc) · 1.06 KB

CommonResponseError

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 import CommonResponseError

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

# convert the object into a dict
common_response_error_dict = common_response_error_instance.to_dict()
# create an instance of CommonResponseError from a dict
common_response_error_form_dict = common_response_error.from_dict(common_response_error_dict)

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