UNPKG

@sumup/sdk

Version:

The official TypeScript SDK for the SumUp API

28 lines 438 B
/** * Device * * Details of the device used to create the transaction. */ export type Device = { /** * Device name. */ name?: string; /** * Device OS. */ system_name?: string; /** * Device model. */ model?: string; /** * Device OS version. */ system_version?: string; /** * Device UUID. */ uuid?: string; }; //# sourceMappingURL=device.d.ts.map