import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type DeactivatePartnerRequestBody = { /** * The ID of the partner to create a link for. Will take precedence over `tenantId` if provided. */ partnerId?: string | null | undefined; /** * The ID of the partner in your system. If both `partnerId` and `tenantId` are not provided, an error will be thrown. */ tenantId?: string | null | undefined; }; /** * The deactivated partner */ export type DeactivatePartnerResponseBody = { /** * The ID of the deactivated partner. */ partnerId: string; }; /** @internal */ export type DeactivatePartnerRequestBody$Outbound = { partnerId?: string | null | undefined; tenantId?: string | null | undefined; }; /** @internal */ export declare const DeactivatePartnerRequestBody$outboundSchema: z.ZodType; export declare function deactivatePartnerRequestBodyToJSON(deactivatePartnerRequestBody: DeactivatePartnerRequestBody): string; /** @internal */ export declare const DeactivatePartnerResponseBody$inboundSchema: z.ZodType; export declare function deactivatePartnerResponseBodyFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=deactivatepartner.d.ts.map