UNPKG

@adyen/api-library

Version:

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

36 lines (35 loc) 907 B
export declare class Passcodes { /** * The passcode for the Admin menu and the Settings menu. */ "adminMenuPin"?: string; /** * The passcode for referenced and unreferenced refunds on standalone terminals. */ "refundPin"?: string; /** * The passcode to unlock the terminal screen after a timeout. */ "screenLockPin"?: string; /** * The passcode for the Transactions menu. */ "txMenuPin"?: 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(); }