mirror of
https://github.com/juspay/hyperswitch.git
synced 2025-11-02 12:06:56 +08:00
feat(connector): Implement Razorpay UPI Collect (#8009)
Co-authored-by: Aishwariyaa Anand <aishwariyaa.anand@Aishwariyaa-Anand-C3PGW02T6Y.local> Co-authored-by: Aishwariyaa Anand <124241367+Aishwariyaa-Anand@users.noreply.github.com> Co-authored-by: hyperswitch-bot[bot] <148525504+hyperswitch-bot[bot]@users.noreply.github.com>
This commit is contained in:
@ -833,6 +833,7 @@ pub enum StripeNextAction {
|
||||
WaitScreenInformation {
|
||||
display_from_timestamp: i128,
|
||||
display_to_timestamp: Option<i128>,
|
||||
poll_config: Option<payments::PollConfig>,
|
||||
},
|
||||
InvokeSdkClient {
|
||||
next_action_data: payments::SdkNextActionData,
|
||||
@ -897,9 +898,11 @@ pub(crate) fn into_stripe_next_action(
|
||||
payments::NextActionData::WaitScreenInformation {
|
||||
display_from_timestamp,
|
||||
display_to_timestamp,
|
||||
poll_config: _,
|
||||
} => StripeNextAction::WaitScreenInformation {
|
||||
display_from_timestamp,
|
||||
display_to_timestamp,
|
||||
poll_config: None,
|
||||
},
|
||||
payments::NextActionData::ThreeDsInvoke { .. } => StripeNextAction::RedirectToUrl {
|
||||
redirect_to_url: RedirectUrl {
|
||||
|
||||
@ -386,6 +386,7 @@ pub enum StripeNextAction {
|
||||
WaitScreenInformation {
|
||||
display_from_timestamp: i128,
|
||||
display_to_timestamp: Option<i128>,
|
||||
poll_config: Option<payments::PollConfig>,
|
||||
},
|
||||
InvokeSdkClient {
|
||||
next_action_data: payments::SdkNextActionData,
|
||||
@ -450,9 +451,11 @@ pub(crate) fn into_stripe_next_action(
|
||||
payments::NextActionData::WaitScreenInformation {
|
||||
display_from_timestamp,
|
||||
display_to_timestamp,
|
||||
poll_config: _,
|
||||
} => StripeNextAction::WaitScreenInformation {
|
||||
display_from_timestamp,
|
||||
display_to_timestamp,
|
||||
poll_config: None,
|
||||
},
|
||||
payments::NextActionData::ThreeDsInvoke { .. } => StripeNextAction::RedirectToUrl {
|
||||
redirect_to_url: RedirectUrl {
|
||||
|
||||
Reference in New Issue
Block a user