Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.69 KB

PaymentgatewayResponseCompound.md

File metadata and controls

35 lines (26 loc) · 1.69 KB

PaymentgatewayResponseCompound

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_compound import PaymentgatewayResponseCompound

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

# convert the object into a dict
paymentgateway_response_compound_dict = paymentgateway_response_compound_instance.to_dict()
# create an instance of PaymentgatewayResponseCompound from a dict
paymentgateway_response_compound_from_dict = PaymentgatewayResponseCompound.from_dict(paymentgateway_response_compound_dict)

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