UNPKG

@adyen/api-library

Version:

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

35 lines (34 loc) 946 B
import { ScaDeviceType } from "./scaDeviceType"; /** * A resource that contains information about a device, including its unique ID, name, and type. */ export declare class ScaDevice { /** * The unique identifier of the SCA device you are registering. */ "id": string; /** * The name of the SCA device that you are registering. You can use it to help your users identify the device. */ "name": string; "type": ScaDeviceType; 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 ScaDevice { }