UNPKG

@adyen/api-library

Version:

The Adyen API Library for NodeJS enables you to work with Adyen APIs.

36 lines (35 loc) 1.61 kB
import { AccountVerificationCountry } from "./accountVerificationCountry"; export declare class AccountVerificationRoutesRequest { "country": AccountVerificationCountry; /** * The language to use in the open banking flow UI, specified by a combination of a two-letter [ISO 639-1](https://en.wikipedia.org/wiki/List_of_ISO_639_language_codes) language code and an [ISO 3166-1 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2) country code. This information is used to configure the open banking flow with the same language for a consistent user experience. Default value: **en-US** */ "locale"?: string; /** * The URL where Adyen redirects the third-party individual after they complete the open banking flow. */ "redirectUrl": string; /** * A value that helps you identify the request in callback handling. You can generate this value on a per-session basis to protect the callback against Cross-Site Request Forgery (CSRF) attacks. This value must be composed of characters that can be successfully URL-encoded. */ "state"?: string; static readonly discriminator: string | undefined; static readonly mapping: { [index: string]: string; } | undefined; static readonly attributeTypeMap: Array<{ name: string; baseName: string; type: string; format: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; format: string; }[]; constructor(); } export declare namespace AccountVerificationRoutesRequest { }