import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { ReportExecutionContext } from "./reportexecutioncontext.js"; import { ReportExecutionStatus } from "./reportexecutionstatus.js"; export type ReportExecutionSummary = { /** * Always `report-execution`. */ type: "report-execution"; /** * The unique ID for the report execution. */ id: string; /** * The date this report execution was created at. */ createdAt: Date; /** * The date this report execution was last updated. */ updatedAt: Date; status: ReportExecutionStatus; context: ReportExecutionContext; }; /** @internal */ export declare const ReportExecutionSummary$inboundSchema: z.ZodType; export declare function reportExecutionSummaryFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=reportexecutionsummary.d.ts.map