import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type PartnerAnalyticsTimeseries = { /** * The starting timestamp of the interval */ start: string; /** * The number of clicks in the interval */ clicks: number; /** * The number of leads in the interval */ leads: number; /** * The number of sales in the interval */ sales: number; /** * The total amount of sales in the interval, in cents */ saleAmount: number; earnings: number; }; /** @internal */ export declare const PartnerAnalyticsTimeseries$inboundSchema: z.ZodType; export declare function partnerAnalyticsTimeseriesFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=partneranalyticstimeseries.d.ts.map