import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { CostAnalyticItem } from "./cost-analytic-item.js"; import { SDKValidationError } from "./sdk-validation-error.js"; export type GetDetailedCostAnalyticsResponse = { /** * Cost analytics array (flattened from nested structure) */ costAnalytics?: Array | undefined; currency?: string | undefined; endTime?: Date | undefined; /** * Revenue - Cost */ margin?: string | undefined; /** * (Margin / Revenue) * 100 */ marginPercent?: string | undefined; /** * (Revenue - Cost) / Cost */ roi?: string | undefined; /** * ROI * 100 */ roiPercent?: string | undefined; startTime?: Date | undefined; totalCost?: string | undefined; /** * Derived metrics */ totalRevenue?: string | undefined; }; /** @internal */ export declare const GetDetailedCostAnalyticsResponse$inboundSchema: z.ZodMiniType; export declare function getDetailedCostAnalyticsResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=get-detailed-cost-analytics-response.d.ts.map