Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.5 KB

PaymentgatewayRequestCompound.md

File metadata and controls

33 lines (24 loc) · 1.5 KB

PaymentgatewayRequestCompound

A Paymentgateway Object and children

Properties

Name Type Description Notes
pki_paymentgateway_id int The unique ID of the Paymentgateway [optional]
e_paymentgateway_processor FieldEPaymentgatewayProcessor
obj_paymentgateway_description MultilingualPaymentgatewayDescription
obj_creditcardmerchant CreditcardmerchantRequestCompound [optional]

Example

from eZmaxApi.models.paymentgateway_request_compound import PaymentgatewayRequestCompound

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

# convert the object into a dict
paymentgateway_request_compound_dict = paymentgateway_request_compound_instance.to_dict()
# create an instance of PaymentgatewayRequestCompound from a dict
paymentgateway_request_compound_from_dict = PaymentgatewayRequestCompound.from_dict(paymentgateway_request_compound_dict)

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