import * as components from "../components/index.js"; import * as z from "zod"; export type ConsoleV1TargetAppControllerGenListRequest = { /** * Results per page */ limit?: any | undefined; /** * Page number */ page?: any | undefined; /** * Optional header to respect review settings for mutation endpoints. */ xRespectReviewSettings?: string | undefined; }; /** * List Target Apps Success */ export type ConsoleV1TargetAppControllerGenListResponseBody = { /** * A simple string explaining the result of the operation. */ message: string; data: Array; /** * Pagination metadata for checking if there is next page for example. */ pagination: components.PaginationResponseMetadataDto; }; /** @internal */ export declare const ConsoleV1TargetAppControllerGenListRequest$inboundSchema: z.ZodType; /** @internal */ export type ConsoleV1TargetAppControllerGenListRequest$Outbound = { limit?: any | undefined; page?: any | undefined; "x-respect-review-settings"?: string | undefined; }; /** @internal */ export declare const ConsoleV1TargetAppControllerGenListRequest$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 ConsoleV1TargetAppControllerGenListRequest$ { /** @deprecated use `ConsoleV1TargetAppControllerGenListRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ConsoleV1TargetAppControllerGenListRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ConsoleV1TargetAppControllerGenListRequest$Outbound` instead. */ type Outbound = ConsoleV1TargetAppControllerGenListRequest$Outbound; } /** @internal */ export declare const ConsoleV1TargetAppControllerGenListResponseBody$inboundSchema: z.ZodType; /** @internal */ export type ConsoleV1TargetAppControllerGenListResponseBody$Outbound = { message: string; data: Array; pagination: components.PaginationResponseMetadataDto$Outbound; }; /** @internal */ export declare const ConsoleV1TargetAppControllerGenListResponseBody$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 ConsoleV1TargetAppControllerGenListResponseBody$ { /** @deprecated use `ConsoleV1TargetAppControllerGenListResponseBody$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ConsoleV1TargetAppControllerGenListResponseBody$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ConsoleV1TargetAppControllerGenListResponseBody$Outbound` instead. */ type Outbound = ConsoleV1TargetAppControllerGenListResponseBody$Outbound; } //# sourceMappingURL=consolev1targetappcontrollergenlist.d.ts.map