import * as z from "zod"; export type ConsoleV1UsageControllerGenReportRequest = { /** * date to query (YYYY-MM-DD) */ start?: number | undefined; /** * date to query (YYYY-MM-DD) */ end: number; /** * Optional header to respect review settings for mutation endpoints. */ xRespectReviewSettings?: string | undefined; }; /** * Report URL generated successfully */ export type ConsoleV1UsageControllerGenReportResponseBody = { message?: string | undefined; }; /** @internal */ export declare const ConsoleV1UsageControllerGenReportRequest$inboundSchema: z.ZodType; /** @internal */ export type ConsoleV1UsageControllerGenReportRequest$Outbound = { start?: number | undefined; end: number; "x-respect-review-settings"?: string | undefined; }; /** @internal */ export declare const ConsoleV1UsageControllerGenReportRequest$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace ConsoleV1UsageControllerGenReportRequest$ { /** @deprecated use `ConsoleV1UsageControllerGenReportRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ConsoleV1UsageControllerGenReportRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ConsoleV1UsageControllerGenReportRequest$Outbound` instead. */ type Outbound = ConsoleV1UsageControllerGenReportRequest$Outbound; } /** @internal */ export declare const ConsoleV1UsageControllerGenReportResponseBody$inboundSchema: z.ZodType; /** @internal */ export type ConsoleV1UsageControllerGenReportResponseBody$Outbound = { message?: string | undefined; }; /** @internal */ export declare const ConsoleV1UsageControllerGenReportResponseBody$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace ConsoleV1UsageControllerGenReportResponseBody$ { /** @deprecated use `ConsoleV1UsageControllerGenReportResponseBody$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ConsoleV1UsageControllerGenReportResponseBody$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ConsoleV1UsageControllerGenReportResponseBody$Outbound` instead. */ type Outbound = ConsoleV1UsageControllerGenReportResponseBody$Outbound; } //# sourceMappingURL=consolev1usagecontrollergenreport.d.ts.map