import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type AnalyticsDevices = { /** * The name of the device */ device: string; /** * The number of clicks from this device */ clicks: number; /** * The number of leads from this device */ leads: number; /** * The number of sales from this device */ sales: number; /** * The total amount of sales from this device, in cents */ saleAmount: number; }; /** @internal */ export declare const AnalyticsDevices$inboundSchema: z.ZodType; export declare function analyticsDevicesFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=analyticsdevices.d.ts.map