You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
URL to redirect the customer after a canceled payment
[optional]
failure_url
str
URL to redirect the customer after a failed payment
[optional]
redirect_url
str
URL to redirect the customer to complete the payment
success_url
str
URL to redirect the customer after a successful payment
[optional]
deep_link
str
Deep link for the payment, use for mobile apps/flows
Example
fromconekta.models.charge_order_response_payment_methodimportChargeOrderResponsePaymentMethod# TODO update the JSON string belowjson="{}"# create an instance of ChargeOrderResponsePaymentMethod from a JSON stringcharge_order_response_payment_method_instance=ChargeOrderResponsePaymentMethod.from_json(json)
# print the JSON string representation of the objectprint(ChargeOrderResponsePaymentMethod.to_json())
# convert the object into a dictcharge_order_response_payment_method_dict=charge_order_response_payment_method_instance.to_dict()
# create an instance of ChargeOrderResponsePaymentMethod from a dictcharge_order_response_payment_method_from_dict=ChargeOrderResponsePaymentMethod.from_dict(charge_order_response_payment_method_dict)