import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type GetOrgRateLimitRequest = { orgId: string; /** * Optional external end-user identifier forwarded by the API gateway. */ xOnBehalfOf?: string | undefined; }; /** * OK */ export type GetOrgRateLimitResponseBody = { id: string; rateLimitEnabled: boolean; rateLimitTimeWindow: number | null; rateLimitMax: number | null; }; /** @internal */ export declare const GetOrgRateLimitRequest$inboundSchema: z.ZodType; /** @internal */ export type GetOrgRateLimitRequest$Outbound = { orgId: string; "X-On-Behalf-Of"?: string | undefined; }; /** @internal */ export declare const GetOrgRateLimitRequest$outboundSchema: z.ZodType; export declare function getOrgRateLimitRequestToJSON(getOrgRateLimitRequest: GetOrgRateLimitRequest): string; export declare function getOrgRateLimitRequestFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GetOrgRateLimitResponseBody$inboundSchema: z.ZodType; /** @internal */ export type GetOrgRateLimitResponseBody$Outbound = { id: string; rateLimitEnabled: boolean; rateLimitTimeWindow: number | null; rateLimitMax: number | null; }; /** @internal */ export declare const GetOrgRateLimitResponseBody$outboundSchema: z.ZodType; export declare function getOrgRateLimitResponseBodyToJSON(getOrgRateLimitResponseBody: GetOrgRateLimitResponseBody): string; export declare function getOrgRateLimitResponseBodyFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getorgratelimit.d.ts.map