/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import * as z from "zod/v4-mini"; export type GetPlanRequest = { /** * Plan ID */ id: string; }; /** @internal */ export type GetPlanRequest$Outbound = { id: string; }; /** @internal */ export const GetPlanRequest$outboundSchema: z.ZodMiniType< GetPlanRequest$Outbound, GetPlanRequest > = z.object({ id: z.string(), }); export function getPlanRequestToJSON(getPlanRequest: GetPlanRequest): string { return JSON.stringify(GetPlanRequest$outboundSchema.parse(getPlanRequest)); }