/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import * as z from "zod"; export type ActionsV1NumberShowRequest = { /** * Unique identifier for the action */ id: string; }; /** @internal */ export const ActionsV1NumberShowRequest$inboundSchema: z.ZodType< ActionsV1NumberShowRequest, z.ZodTypeDef, unknown > = z.object({ id: z.string(), }); /** @internal */ export type ActionsV1NumberShowRequest$Outbound = { id: string; }; /** @internal */ export const ActionsV1NumberShowRequest$outboundSchema: z.ZodType< ActionsV1NumberShowRequest$Outbound, z.ZodTypeDef, ActionsV1NumberShowRequest > = z.object({ id: 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 ActionsV1NumberShowRequest$ { /** @deprecated use `ActionsV1NumberShowRequest$inboundSchema` instead. */ export const inboundSchema = ActionsV1NumberShowRequest$inboundSchema; /** @deprecated use `ActionsV1NumberShowRequest$outboundSchema` instead. */ export const outboundSchema = ActionsV1NumberShowRequest$outboundSchema; /** @deprecated use `ActionsV1NumberShowRequest$Outbound` instead. */ export type Outbound = ActionsV1NumberShowRequest$Outbound; }