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