import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * Processing history event for a datasource */ export type ProcessingHistoryEvent = { /** * The start time of the processing in ISO 8601 format */ startTime?: string | undefined; /** * The end time of the processing in ISO 8601 format, 'NA' if still in progress */ endTime?: string | undefined; }; /** @internal */ export declare const ProcessingHistoryEvent$inboundSchema: z.ZodType; export declare function processingHistoryEventFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=processinghistoryevent.d.ts.map