import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type GetTenantRequest = { /** * The ID of the tenant. Required when using AdminApiKey authentication. */ tenantId: string; }; /** @internal */ export declare const GetTenantRequest$inboundSchema: z.ZodType; /** @internal */ export type GetTenantRequest$Outbound = { tenant_id: string; }; /** @internal */ export declare const GetTenantRequest$outboundSchema: z.ZodType; export declare function getTenantRequestToJSON(getTenantRequest: GetTenantRequest): string; export declare function getTenantRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=gettenant.d.ts.map