Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.38 KB

PaymentgatewayRequest.md

File metadata and controls

33 lines (24 loc) · 1.38 KB

PaymentgatewayRequest

A Paymentgateway Object

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 import PaymentgatewayRequest

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

# convert the object into a dict
paymentgateway_request_dict = paymentgateway_request_instance.to_dict()
# create an instance of PaymentgatewayRequest from a dict
paymentgateway_request_from_dict = PaymentgatewayRequest.from_dict(paymentgateway_request_dict)

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