import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { BillingPeriod } from "./billing-period.js"; import { CommitmentType } from "./commitment-type.js"; import { InvoiceCadence } from "./invoice-cadence.js"; import { MeterMeter } from "./meter-meter.js"; import { PricePrice } from "./price-price.js"; import { PriceType } from "./price-type.js"; import { SDKValidationError } from "./sdk-validation-error.js"; import { Status } from "./status.js"; import { SubscriptionLineItemEntityType } from "./subscription-line-item-entity-type.js"; import { TimeOfDayBucket } from "./time-of-day-bucket.js"; export type SubscriptionSubscriptionLineItem = { addonAssociationId?: string | undefined; billingPeriod?: BillingPeriod | undefined; /** * from price at create; default 1 */ billingPeriodCount?: number | undefined; /** * Commitment fields */ commitmentAmount?: string | undefined; commitmentDuration?: BillingPeriod | undefined; commitmentOverageFactor?: string | undefined; commitmentQuantity?: string | undefined; commitmentTimeBuckets?: Array | undefined; commitmentTrueUpEnabled?: boolean | undefined; commitmentType?: CommitmentType | undefined; commitmentWindowed?: boolean | undefined; createdAt?: Date | undefined; createdBy?: string | undefined; currency?: string | undefined; customerId?: string | undefined; displayName?: string | undefined; endDate?: Date | undefined; entityId?: string | undefined; entityType?: SubscriptionLineItemEntityType | undefined; environmentId?: string | undefined; id?: string | undefined; invoiceCadence?: InvoiceCadence | undefined; metadata?: { [k: string]: string; } | undefined; meter?: MeterMeter | undefined; meterDisplayName?: string | undefined; meterId?: string | undefined; planDisplayName?: string | undefined; price?: PricePrice | undefined; priceId?: string | undefined; priceType?: PriceType | undefined; priceUnit?: string | undefined; priceUnitId?: string | undefined; quantity?: string | undefined; startDate?: Date | undefined; status?: Status | undefined; subscriptionId?: string | undefined; subscriptionPhaseId?: string | undefined; tenantId?: string | undefined; updatedAt?: Date | undefined; updatedBy?: string | undefined; }; /** @internal */ export declare const SubscriptionSubscriptionLineItem$inboundSchema: z.ZodMiniType; export declare function subscriptionSubscriptionLineItemFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=subscription-subscription-line-item.d.ts.map