import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { CostPoint } from "./cost-point.js"; import { MeterMeter } from "./meter-meter.js"; import { PricePrice } from "./price-price.js"; import { SDKValidationError } from "./sdk-validation-error.js"; export type CostAnalyticItem = { /** * Breakdown */ costByPeriod?: Array | undefined; costsheetId?: string | undefined; /** * Metadata */ currency?: string | undefined; customerId?: string | undefined; externalCustomerId?: string | undefined; meter?: MeterMeter | undefined; meterId?: string | undefined; meterName?: string | undefined; price?: PricePrice | undefined; priceId?: string | undefined; properties?: { [k: string]: string; } | undefined; source?: string | undefined; /** * Aggregated metrics */ totalCost?: string | undefined; totalEvents?: number | undefined; totalQuantity?: string | undefined; }; /** @internal */ export declare const CostAnalyticItem$inboundSchema: z.ZodMiniType; export declare function costAnalyticItemFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=cost-analytic-item.d.ts.map