mirror of
https://github.com/juspay/hyperswitch.git
synced 2025-11-02 04:04:43 +08:00
feat(Connector): [Stripe] Implement Cashapp Wallet (#1103)
This commit is contained in:
@ -769,6 +769,7 @@ pub enum StripeNextAction {
|
||||
},
|
||||
QrCodeInformation {
|
||||
image_data_url: url::Url,
|
||||
display_to_timestamp: Option<i64>,
|
||||
},
|
||||
DisplayVoucherInformation {
|
||||
voucher_details: payments::VoucherNextStepData,
|
||||
@ -800,9 +801,13 @@ pub(crate) fn into_stripe_next_action(
|
||||
payments::NextActionData::ThirdPartySdkSessionToken { session_token } => {
|
||||
StripeNextAction::ThirdPartySdkSessionToken { session_token }
|
||||
}
|
||||
payments::NextActionData::QrCodeInformation { image_data_url } => {
|
||||
StripeNextAction::QrCodeInformation { image_data_url }
|
||||
}
|
||||
payments::NextActionData::QrCodeInformation {
|
||||
image_data_url,
|
||||
display_to_timestamp,
|
||||
} => StripeNextAction::QrCodeInformation {
|
||||
image_data_url,
|
||||
display_to_timestamp,
|
||||
},
|
||||
payments::NextActionData::DisplayVoucherInformation { voucher_details } => {
|
||||
StripeNextAction::DisplayVoucherInformation { voucher_details }
|
||||
}
|
||||
|
||||
@ -370,6 +370,7 @@ pub enum StripeNextAction {
|
||||
},
|
||||
QrCodeInformation {
|
||||
image_data_url: url::Url,
|
||||
display_to_timestamp: Option<i64>,
|
||||
},
|
||||
DisplayVoucherInformation {
|
||||
voucher_details: payments::VoucherNextStepData,
|
||||
@ -401,9 +402,13 @@ pub(crate) fn into_stripe_next_action(
|
||||
payments::NextActionData::ThirdPartySdkSessionToken { session_token } => {
|
||||
StripeNextAction::ThirdPartySdkSessionToken { session_token }
|
||||
}
|
||||
payments::NextActionData::QrCodeInformation { image_data_url } => {
|
||||
StripeNextAction::QrCodeInformation { image_data_url }
|
||||
}
|
||||
payments::NextActionData::QrCodeInformation {
|
||||
image_data_url,
|
||||
display_to_timestamp,
|
||||
} => StripeNextAction::QrCodeInformation {
|
||||
image_data_url,
|
||||
display_to_timestamp,
|
||||
},
|
||||
payments::NextActionData::DisplayVoucherInformation { voucher_details } => {
|
||||
StripeNextAction::DisplayVoucherInformation { voucher_details }
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user