Skip to content

Files

Latest commit

1900452 · Jan 14, 2025

History

History
32 lines (23 loc) · 1.14 KB

CommonResponseError.md

File metadata and controls

32 lines (23 loc) · 1.14 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
a_s_error_messagedetail List[str] More error message detail [optional]

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_from_dict = CommonResponseError.from_dict(common_response_error_dict)

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