/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import * as z from "zod"; import { UserWithRolesV2, UserWithRolesV2$inboundSchema, UserWithRolesV2$Outbound, UserWithRolesV2$outboundSchema, } from "./userwithrolesv2.js"; export type ShowResponseBody16 = { user: UserWithRolesV2; }; /** @internal */ export const ShowResponseBody16$inboundSchema: z.ZodType< ShowResponseBody16, z.ZodTypeDef, unknown > = z.object({ user: UserWithRolesV2$inboundSchema, }); /** @internal */ export type ShowResponseBody16$Outbound = { user: UserWithRolesV2$Outbound; }; /** @internal */ export const ShowResponseBody16$outboundSchema: z.ZodType< ShowResponseBody16$Outbound, z.ZodTypeDef, ShowResponseBody16 > = z.object({ user: UserWithRolesV2$outboundSchema, }); /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export namespace ShowResponseBody16$ { /** @deprecated use `ShowResponseBody16$inboundSchema` instead. */ export const inboundSchema = ShowResponseBody16$inboundSchema; /** @deprecated use `ShowResponseBody16$outboundSchema` instead. */ export const outboundSchema = ShowResponseBody16$outboundSchema; /** @deprecated use `ShowResponseBody16$Outbound` instead. */ export type Outbound = ShowResponseBody16$Outbound; }