Skip to content

Files

Latest commit

 

History

History
34 lines (25 loc) · 1.75 KB

CustomCreditcardtransactionresponseResponse.md

File metadata and controls

34 lines (25 loc) · 1.75 KB

CustomCreditcardtransactionresponseResponse

A custom Creditcardtransactionresponse Object

Properties

Name Type Description Notes
s_creditcardtransaction_is_ocode str The ISO code
s_creditcardtransaction_responsecode str The response code
s_creditcardtransaction_responseterminalmessage str The terminal response message
e_creditcardtransaction_avsresult FieldECreditcardtransactionAvsresult [optional]
e_creditcardtransaction_cvdresult FieldECreditcardtransactionCvdresult [optional]

Example

from eZmaxApi.models.custom_creditcardtransactionresponse_response import CustomCreditcardtransactionresponseResponse

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

# convert the object into a dict
custom_creditcardtransactionresponse_response_dict = custom_creditcardtransactionresponse_response_instance.to_dict()
# create an instance of CustomCreditcardtransactionresponseResponse from a dict
custom_creditcardtransactionresponse_response_from_dict = CustomCreditcardtransactionresponseResponse.from_dict(custom_creditcardtransactionresponse_response_dict)

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