UNPKG

@adyen/api-library

Version:

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

11 lines (10 loc) 306 B
/** * Indicates if the printer is working and usable. Possible values: * **OK** * **PaperLow** * **NoPaper** * **PaperJam** * **OutOfOrder** */ export declare enum PrinterStatus { Ok = "OK", PaperLow = "PaperLow", NoPaper = "NoPaper", PaperJam = "PaperJam", OutOfOrder = "OutOfOrder" }