import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { LicenseKeyCustomer } from "./licensekeycustomer.js"; import { LicenseKeyStatus } from "./licensekeystatus.js"; export type LicenseKeyRead = { /** * 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; }; /** @internal */ export declare const LicenseKeyRead$inboundSchema: z.ZodMiniType; export declare function licenseKeyReadFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=licensekeyread.d.ts.map