We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 53b1f30 commit 76acdfdCopy full SHA for 76acdfd
1 file changed
craftgate/request/init_checkout_payment_request.py
@@ -38,6 +38,7 @@ def __init__(
38
force_three_ds: bool = False,
39
force_auth_for_non_credit_cards: bool = False,
40
deposit_payment: bool = False,
41
+ return_back_url: Optional[str] = None,
42
ttl: Optional[int] = None,
43
custom_installments: Optional[List[CustomInstallment]] = None,
44
items: Optional[List[PaymentItem]] = None,
@@ -70,6 +71,7 @@ def __init__(
70
71
self.force_three_ds = force_three_ds
72
self.force_auth_for_non_credit_cards = force_auth_for_non_credit_cards
73
self.deposit_payment = deposit_payment
74
+ self.return_back_url = return_back_url
75
self.ttl = ttl
76
self.custom_installments = custom_installments
77
self.items = items
0 commit comments