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