/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import * as z from "zod/v3"; export type GetNodeRequest = { nodeId: string; }; /** @internal */ export type GetNodeRequest$Outbound = { nodeId: string; }; /** @internal */ export const GetNodeRequest$outboundSchema: z.ZodType< GetNodeRequest$Outbound, z.ZodTypeDef, GetNodeRequest > = z.object({ nodeId: z.string(), }); export function getNodeRequestToJSON(getNodeRequest: GetNodeRequest): string { return JSON.stringify(GetNodeRequest$outboundSchema.parse(getNodeRequest)); }