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"; import { ReportSummary } from "./reportsummary.js"; export type ReportExecution = { /** * 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; report: ReportSummary; }; /** @internal */ export declare const ReportExecution$inboundSchema: z.ZodType; export declare function reportExecutionFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=reportexecution.d.ts.map