Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions craftgate/request/init_checkout_payment_request.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ def __init__(
conversation_id: Optional[str] = None,
external_id: Optional[str] = None,
order_id: Optional[str] = None,
basket_identifier: Optional[str] = None,
callback_url: Optional[str] = None,
client_ip: Optional[str] = None,
payment_phase: PaymentPhase = PaymentPhase.AUTH,
Expand Down Expand Up @@ -58,6 +59,7 @@ def __init__(
self.conversation_id = conversation_id
self.external_id = external_id
self.order_id = order_id
self.basket_identifier = basket_identifier
self.callback_url = callback_url
self.client_ip = client_ip
self.payment_phase = payment_phase
Expand Down
Loading