import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type DeactivateLicenseRequestEntity = { /** * The license key to deactivate. */ key: string; /** * Id of the instance to deactivate. */ instanceId: string; }; /** @internal */ export declare const DeactivateLicenseRequestEntity$inboundSchema: z.ZodType; /** @internal */ export type DeactivateLicenseRequestEntity$Outbound = { key: string; instance_id: string; }; /** @internal */ export declare const DeactivateLicenseRequestEntity$outboundSchema: z.ZodType; export declare function deactivateLicenseRequestEntityToJSON(deactivateLicenseRequestEntity: DeactivateLicenseRequestEntity): string; export declare function deactivateLicenseRequestEntityFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=deactivatelicenserequestentity.d.ts.map