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