@adyen/api-library
Version:
The Adyen API Library for NodeJS enables you to work with Adyen APIs.
30 lines (29 loc) • 1.3 kB
TypeScript
import { CheckoutAwaitAction } from "./checkoutAwaitAction";
import { CheckoutBankTransferAction } from "./checkoutBankTransferAction";
import { CheckoutDelegatedAuthenticationAction } from "./checkoutDelegatedAuthenticationAction";
import { CheckoutNativeRedirectAction } from "./checkoutNativeRedirectAction";
import { CheckoutQrCodeAction } from "./checkoutQrCodeAction";
import { CheckoutRedirectAction } from "./checkoutRedirectAction";
import { CheckoutSDKAction } from "./checkoutSDKAction";
import { CheckoutThreeDS2Action } from "./checkoutThreeDS2Action";
import { CheckoutVoucherAction } from "./checkoutVoucherAction";
/**
* Action to be taken for completing the payment.
*/
/**
* @type PaymentResponseAction
* Type
* @export
*/
export type PaymentResponseAction = CheckoutAwaitAction | CheckoutBankTransferAction | CheckoutDelegatedAuthenticationAction | CheckoutNativeRedirectAction | CheckoutQrCodeAction | CheckoutRedirectAction | CheckoutSDKAction | CheckoutThreeDS2Action | CheckoutVoucherAction;
/**
* @type PaymentResponseActionClass
* Action to be taken for completing the payment.
* @export
*/
export declare class PaymentResponseActionClass {
static readonly discriminator: string;
static readonly mapping: {
[index: string]: string;
} | undefined;
}