import * as components from "../components/index.js"; import * as z from "zod"; export type ConsoleV1HoldoutsControllerGenRemoveRequest = { /** * id */ id: string; /** * Optional header to respect review settings for mutation endpoints. */ xRespectReviewSettings?: string | undefined; }; /** * Delete holdout response */ export type ConsoleV1HoldoutsControllerGenRemoveResponseBody = { /** * A simple string explaining the result of the operation. */ message: string; data: components.HoldoutDto; }; /** @internal */ export declare const ConsoleV1HoldoutsControllerGenRemoveRequest$inboundSchema: z.ZodType; /** @internal */ export type ConsoleV1HoldoutsControllerGenRemoveRequest$Outbound = { id: string; "x-respect-review-settings"?: string | undefined; }; /** @internal */ export declare const ConsoleV1HoldoutsControllerGenRemoveRequest$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 ConsoleV1HoldoutsControllerGenRemoveRequest$ { /** @deprecated use `ConsoleV1HoldoutsControllerGenRemoveRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ConsoleV1HoldoutsControllerGenRemoveRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ConsoleV1HoldoutsControllerGenRemoveRequest$Outbound` instead. */ type Outbound = ConsoleV1HoldoutsControllerGenRemoveRequest$Outbound; } /** @internal */ export declare const ConsoleV1HoldoutsControllerGenRemoveResponseBody$inboundSchema: z.ZodType; /** @internal */ export type ConsoleV1HoldoutsControllerGenRemoveResponseBody$Outbound = { message: string; data: components.HoldoutDto$Outbound; }; /** @internal */ export declare const ConsoleV1HoldoutsControllerGenRemoveResponseBody$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 ConsoleV1HoldoutsControllerGenRemoveResponseBody$ { /** @deprecated use `ConsoleV1HoldoutsControllerGenRemoveResponseBody$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ConsoleV1HoldoutsControllerGenRemoveResponseBody$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ConsoleV1HoldoutsControllerGenRemoveResponseBody$Outbound` instead. */ type Outbound = ConsoleV1HoldoutsControllerGenRemoveResponseBody$Outbound; } //# sourceMappingURL=consolev1holdoutscontrollergenremove.d.ts.map