import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type ActivateLicenseRequestEntity = { /** * The license key to activate. */ key: string; /** * A label for the new instance to identify it in Creem. */ instanceName: string; }; /** @internal */ export declare const ActivateLicenseRequestEntity$inboundSchema: z.ZodType; /** @internal */ export type ActivateLicenseRequestEntity$Outbound = { key: string; instance_name: string; }; /** @internal */ export declare const ActivateLicenseRequestEntity$outboundSchema: z.ZodType; export declare function activateLicenseRequestEntityToJSON(activateLicenseRequestEntity: ActivateLicenseRequestEntity): string; export declare function activateLicenseRequestEntityFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=activatelicenserequestentity.d.ts.map