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