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