mirror of
https://github.com/juspay/hyperswitch.git
synced 2025-10-27 19:46:48 +08:00
feat(connector): [Adyen] Add support for Blik (#1727)
This commit is contained in:
@ -1353,6 +1353,7 @@ pub enum NextActionType {
|
||||
InvokeSdkClient,
|
||||
TriggerApi,
|
||||
DisplayBankTransferInformation,
|
||||
DisplayWaitScreen,
|
||||
}
|
||||
|
||||
#[derive(Clone, Debug, Eq, PartialEq, serde::Serialize, ToSchema)]
|
||||
@ -1376,6 +1377,11 @@ pub enum NextActionData {
|
||||
#[schema(value_type = String)]
|
||||
voucher_details: VoucherNextStepData,
|
||||
},
|
||||
/// Contains duration for displaying a wait screen, wait screen with timer is displayed by sdk
|
||||
WaitScreenInformation {
|
||||
display_from_timestamp: i128,
|
||||
display_to_timestamp: Option<i128>,
|
||||
},
|
||||
}
|
||||
|
||||
#[derive(Clone, Debug, Eq, PartialEq, serde::Serialize, serde::Deserialize, ToSchema)]
|
||||
@ -1400,6 +1406,12 @@ pub struct QrCodeNextStepsInstruction {
|
||||
pub image_data_url: Url,
|
||||
}
|
||||
|
||||
#[derive(Clone, Debug, serde::Deserialize)]
|
||||
pub struct WaitScreenInstructions {
|
||||
pub display_from_timestamp: i128,
|
||||
pub display_to_timestamp: Option<i128>,
|
||||
}
|
||||
|
||||
#[derive(Clone, Debug, Eq, PartialEq, serde::Serialize, serde::Deserialize, ToSchema)]
|
||||
#[serde(rename_all = "snake_case")]
|
||||
pub enum BankTransferInstructions {
|
||||
|
||||
Reference in New Issue
Block a user