import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { LicenseKeyActivationBase } from "./licensekeyactivationbase.js"; import { LicenseKeyCustomer } from "./licensekeycustomer.js"; import { LicenseKeyStatus } from "./licensekeystatus.js"; export type ValidatedLicenseKey = { /** * The ID of the object. */ id: string; /** * Creation timestamp of the object. */ createdAt: Date; /** * Last modification timestamp of the object. */ modifiedAt: Date | null; organizationId: string; customerId: string; customer: LicenseKeyCustomer; /** * The benefit ID. */ benefitId: string; key: string; displayKey: string; status: LicenseKeyStatus; limitActivations: number | null; usage: number; limitUsage: number | null; validations: number; lastValidatedAt: Date | null; expiresAt: Date | null; activation?: LicenseKeyActivationBase | null | undefined; }; /** @internal */ export declare const ValidatedLicenseKey$inboundSchema: z.ZodMiniType; export declare function validatedLicenseKeyFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=validatedlicensekey.d.ts.map