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