Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.58 KB

PaymentgatewayResponse.md

File metadata and controls

35 lines (26 loc) · 1.58 KB

PaymentgatewayResponse

A Paymentgateway Object

Properties

Name Type Description Notes
pki_paymentgateway_id int The unique ID of the Paymentgateway
fki_creditcardmerchant_id int The unique ID of the Creditcardmerchant [optional]
s_creditcardmerchant_description str The description of the Creditcardmerchant [optional]
e_paymentgateway_processor FieldEPaymentgatewayProcessor
obj_paymentgateway_description MultilingualPaymentgatewayDescription
obj_creditcardmerchant CreditcardmerchantResponseCompound [optional]

Example

from eZmaxApi.models.paymentgateway_response import PaymentgatewayResponse

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

# convert the object into a dict
paymentgateway_response_dict = paymentgateway_response_instance.to_dict()
# create an instance of PaymentgatewayResponse from a dict
paymentgateway_response_from_dict = PaymentgatewayResponse.from_dict(paymentgateway_response_dict)

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