import * as z from "zod/v3"; import { ClosedEnum } from "../../types/enums.js"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type GetOrgQuotaRequest = { orgId: string; /** * Optional external end-user identifier forwarded by the API gateway. */ xOnBehalfOf?: string | undefined; }; export declare const GetOrgQuotaQuotaPeriod: { readonly Day: "day"; readonly Month: "month"; }; export type GetOrgQuotaQuotaPeriod = ClosedEnum; /** * OK */ export type GetOrgQuotaResponseBody = { id: string; quotaEnabled: boolean; quotaPeriod: GetOrgQuotaQuotaPeriod | null; quotaMax: number | null; }; /** @internal */ export declare const GetOrgQuotaRequest$inboundSchema: z.ZodType; /** @internal */ export type GetOrgQuotaRequest$Outbound = { orgId: string; "X-On-Behalf-Of"?: string | undefined; }; /** @internal */ export declare const GetOrgQuotaRequest$outboundSchema: z.ZodType; export declare function getOrgQuotaRequestToJSON(getOrgQuotaRequest: GetOrgQuotaRequest): string; export declare function getOrgQuotaRequestFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GetOrgQuotaQuotaPeriod$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const GetOrgQuotaQuotaPeriod$outboundSchema: z.ZodNativeEnum; /** @internal */ export declare const GetOrgQuotaResponseBody$inboundSchema: z.ZodType; /** @internal */ export type GetOrgQuotaResponseBody$Outbound = { id: string; quotaEnabled: boolean; quotaPeriod: string | null; quotaMax: number | null; }; /** @internal */ export declare const GetOrgQuotaResponseBody$outboundSchema: z.ZodType; export declare function getOrgQuotaResponseBodyToJSON(getOrgQuotaResponseBody: GetOrgQuotaResponseBody): string; export declare function getOrgQuotaResponseBodyFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getorgquota.d.ts.map