Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix payment methods flow type #164

Merged
Merged
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
4 changes: 2 additions & 2 deletions checkout_sdk/payments/sessions/sessions.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,8 @@ class PaymentSessionsRequest:
processing_channel_id: str
expires_on: datetime
payment_method_configuration: PaymentMethodConfiguration
enabled_payment_methods: PaymentMethodsType
disabled_payment_methods: PaymentMethodsType
enabled_payment_methods: list # PaymentMethodsType
disabled_payment_methods: list # PaymentMethodsType
items: list # payments.Product
amount_allocations: list # values of AmountAllocations
risk: RiskRequest
Expand Down
Loading