import * as z from "zod/v4-mini"; import { BenefitLicenseKeysCreateProperties, BenefitLicenseKeysCreateProperties$Outbound } from "./benefitlicensekeyscreateproperties.js"; export type BenefitLicenseKeysCreateMetadata = string | number | number | boolean; export type BenefitLicenseKeysCreate = { /** * Key-value object allowing you to store additional information. * * @remarks * * The key must be a string with a maximum length of **40 characters**. * The value must be either: * * * A string with a maximum length of **500 characters** * * An integer * * A floating-point number * * A boolean * * You can store up to **50 key-value pairs**. */ metadata?: { [k: string]: string | number | number | boolean; } | undefined; type: "license_keys"; /** * The description of the benefit. Will be displayed on products having this benefit. */ description: string; /** * The ID of the organization owning the benefit. **Required unless you use an organization token.** */ organizationId?: string | null | undefined; properties: BenefitLicenseKeysCreateProperties; }; /** @internal */ export type BenefitLicenseKeysCreateMetadata$Outbound = string | number | number | boolean; /** @internal */ export declare const BenefitLicenseKeysCreateMetadata$outboundSchema: z.ZodMiniType; export declare function benefitLicenseKeysCreateMetadataToJSON(benefitLicenseKeysCreateMetadata: BenefitLicenseKeysCreateMetadata): string; /** @internal */ export type BenefitLicenseKeysCreate$Outbound = { metadata?: { [k: string]: string | number | number | boolean; } | undefined; type: "license_keys"; description: string; organization_id?: string | null | undefined; properties: BenefitLicenseKeysCreateProperties$Outbound; }; /** @internal */ export declare const BenefitLicenseKeysCreate$outboundSchema: z.ZodMiniType; export declare function benefitLicenseKeysCreateToJSON(benefitLicenseKeysCreate: BenefitLicenseKeysCreate): string; //# sourceMappingURL=benefitlicensekeyscreate.d.ts.map