import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { RFCDate } from "../../types/rfcdate.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type GetStatsAccountByDateRequest = { /** * The start date for the stats, formatted YYYY-MM-DD */ startDate?: RFCDate | undefined; /** * The end date for the stats, formatted YYYY-MM-DD */ endDate?: RFCDate | undefined; }; export type GetStatsAccountByDateResponse = { date?: RFCDate | undefined; loadCount?: number | undefined; playCount?: number | undefined; hoursWatched?: number | undefined; }; /** @internal */ export type GetStatsAccountByDateRequest$Outbound = { start_date?: string | undefined; end_date?: string | undefined; }; /** @internal */ export declare const GetStatsAccountByDateRequest$outboundSchema: z.ZodType; export declare function getStatsAccountByDateRequestToJSON(getStatsAccountByDateRequest: GetStatsAccountByDateRequest): string; /** @internal */ export declare const GetStatsAccountByDateResponse$inboundSchema: z.ZodType; export declare function getStatsAccountByDateResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getstatsaccountbydate.d.ts.map