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