/** * PayPal Server SDKLib * * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { Schema } from '../schema.js'; /** Information used to pay using BLIK one-click flow. */ export interface BlikOneClickPaymentRequest { /** The 6-digit code used to authenticate a consumer within BLIK. */ authCode?: string; /** The merchant generated, unique reference serving as a primary identifier for accounts connected between Blik and a merchant. */ consumerReference: string; /** A bank defined identifier used as a display name to allow the payer to differentiate between multiple registered bank accounts. */ aliasLabel?: string; /** A Blik-defined identifier for a specific Blik-enabled bank account that is associated with a given merchant. Used only in conjunction with a Consumer Reference. */ aliasKey?: string; } export declare const blikOneClickPaymentRequestSchema: Schema; //# sourceMappingURL=blikOneClickPaymentRequest.d.ts.map