Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.56 KB

CommonResponseErrorCreditcardValidation.md

File metadata and controls

33 lines (24 loc) · 1.56 KB

CommonResponseErrorCreditcardValidation

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]
obj_creditcardtransactionresponse CustomCreditcardtransactionresponseResponse [optional]

Example

from eZmaxApi.models.common_response_error_creditcard_validation import CommonResponseErrorCreditcardValidation

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

# convert the object into a dict
common_response_error_creditcard_validation_dict = common_response_error_creditcard_validation_instance.to_dict()
# create an instance of CommonResponseErrorCreditcardValidation from a dict
common_response_error_creditcard_validation_from_dict = CommonResponseErrorCreditcardValidation.from_dict(common_response_error_creditcard_validation_dict)

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