@sumup/sdk
Version:
The official TypeScript SDK for the SumUp API
14 lines • 346 B
TypeScript
/**
* Information about the underlying physical device.
*/
export type ReaderDevice = {
/**
* A unique identifier of the physical device (e.g. serial number).
*/
identifier: string;
/**
* Identifier of the model of the device.
*/
model: "solo" | "virtual-solo";
};
//# sourceMappingURL=reader-device.d.ts.map