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] |
a_obj_ezsignformfielderror | List[CustomEzsignformfielderrorResponse] |
from eZmaxApi.models.common_response_error_ezsignform_validation import CommonResponseErrorEzsignformValidation
# TODO update the JSON string below
json = "{}"
# create an instance of CommonResponseErrorEzsignformValidation from a JSON string
common_response_error_ezsignform_validation_instance = CommonResponseErrorEzsignformValidation.from_json(json)
# print the JSON string representation of the object
print(CommonResponseErrorEzsignformValidation.to_json())
# convert the object into a dict
common_response_error_ezsignform_validation_dict = common_response_error_ezsignform_validation_instance.to_dict()
# create an instance of CommonResponseErrorEzsignformValidation from a dict
common_response_error_ezsignform_validation_from_dict = CommonResponseErrorEzsignformValidation.from_dict(common_response_error_ezsignform_validation_dict)