mirror of
https://github.com/juspay/hyperswitch.git
synced 2025-10-27 11:24:45 +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:
@ -4537,6 +4537,7 @@ pub enum NextActionData {
|
||||
WaitScreenInformation {
|
||||
display_from_timestamp: i128,
|
||||
display_to_timestamp: Option<i128>,
|
||||
poll_config: Option<PollConfig>,
|
||||
},
|
||||
/// Contains the information regarding three_ds_method_data submission, three_ds authentication, and authorization flows
|
||||
ThreeDsInvoke {
|
||||
@ -4697,6 +4698,15 @@ pub struct QrCodeNextStepsInstruction {
|
||||
pub struct WaitScreenInstructions {
|
||||
pub display_from_timestamp: i128,
|
||||
pub display_to_timestamp: Option<i128>,
|
||||
pub poll_config: Option<PollConfig>,
|
||||
}
|
||||
|
||||
#[derive(Clone, Debug, Eq, PartialEq, serde::Serialize, serde::Deserialize, ToSchema)]
|
||||
pub struct PollConfig {
|
||||
/// Interval of the poll
|
||||
pub delay_in_secs: u16,
|
||||
/// Frequency of the poll
|
||||
pub frequency: u16,
|
||||
}
|
||||
|
||||
#[derive(Clone, Debug, Eq, PartialEq, serde::Serialize, serde::Deserialize, ToSchema)]
|
||||
|
||||
Reference in New Issue
Block a user