mirror of
https://github.com/juspay/hyperswitch.git
synced 2025-11-03 21:37:41 +08:00
feat(connector): [Adyen] Add support for PIX Payment Method (#3236)
Co-authored-by: hyperswitch-bot[bot] <148525504+hyperswitch-bot[bot]@users.noreply.github.com>
This commit is contained in:
@ -794,8 +794,9 @@ pub enum StripeNextAction {
|
||||
session_token: Option<payments::SessionToken>,
|
||||
},
|
||||
QrCodeInformation {
|
||||
image_data_url: url::Url,
|
||||
image_data_url: Option<url::Url>,
|
||||
display_to_timestamp: Option<i64>,
|
||||
qr_code_url: Option<url::Url>,
|
||||
},
|
||||
DisplayVoucherInformation {
|
||||
voucher_details: payments::VoucherNextStepData,
|
||||
@ -830,9 +831,11 @@ pub(crate) fn into_stripe_next_action(
|
||||
payments::NextActionData::QrCodeInformation {
|
||||
image_data_url,
|
||||
display_to_timestamp,
|
||||
qr_code_url,
|
||||
} => StripeNextAction::QrCodeInformation {
|
||||
image_data_url,
|
||||
display_to_timestamp,
|
||||
qr_code_url,
|
||||
},
|
||||
payments::NextActionData::DisplayVoucherInformation { voucher_details } => {
|
||||
StripeNextAction::DisplayVoucherInformation { voucher_details }
|
||||
|
||||
@ -384,8 +384,9 @@ pub enum StripeNextAction {
|
||||
session_token: Option<payments::SessionToken>,
|
||||
},
|
||||
QrCodeInformation {
|
||||
image_data_url: url::Url,
|
||||
image_data_url: Option<url::Url>,
|
||||
display_to_timestamp: Option<i64>,
|
||||
qr_code_url: Option<url::Url>,
|
||||
},
|
||||
DisplayVoucherInformation {
|
||||
voucher_details: payments::VoucherNextStepData,
|
||||
@ -420,9 +421,11 @@ pub(crate) fn into_stripe_next_action(
|
||||
payments::NextActionData::QrCodeInformation {
|
||||
image_data_url,
|
||||
display_to_timestamp,
|
||||
qr_code_url,
|
||||
} => StripeNextAction::QrCodeInformation {
|
||||
image_data_url,
|
||||
display_to_timestamp,
|
||||
qr_code_url,
|
||||
},
|
||||
payments::NextActionData::DisplayVoucherInformation { voucher_details } => {
|
||||
StripeNextAction::DisplayVoucherInformation { voucher_details }
|
||||
|
||||
Reference in New Issue
Block a user