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