A Paymentgateway Object
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] |
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)