@basetime/a2w-api-ts
Version:
Client library that communicates with the addtowallet API.
16 lines (15 loc) • 505 B
TypeScript
import { z } from 'zod';
/**
* Schema for information about a scanner device.
*/
export declare const ScannerDeviceInfoSchema: z.ZodObject<{
manufacturer: z.ZodNullable<z.ZodString>;
model: z.ZodNullable<z.ZodString>;
osVersion: z.ZodNullable<z.ZodString>;
device: z.ZodNullable<z.ZodString>;
deviceName: z.ZodNullable<z.ZodString>;
}, z.core.$loose>;
/**
* Represents information about a scanner device.
*/
export type ScannerDeviceInfo = z.infer<typeof ScannerDeviceInfoSchema>;