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