UNPKG

@adyen/api-library

Version:

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

30 lines (29 loc) 998 B
import { DelegatedAuthenticationData } from "./delegatedAuthenticationData"; export declare class RegisterSCARequest { /** * The name of the SCA device that you are registering. You can use it to help your users identify the device. If you do not specify a `name`, Adyen automatically generates one. */ "name"?: string; /** * The unique identifier of the payment instrument for which you are registering the SCA device. */ "paymentInstrumentId": string; "strongCustomerAuthentication": DelegatedAuthenticationData; 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(); }