import * as z from "zod/v4"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { JSONPayloadResponse } from "./jsonpayloadresponse.js"; /** * Attributes for workflow execution completed events. */ export type WorkflowExecutionCompletedAttributesResponse = { /** * Unique identifier for the task within the workflow execution. */ taskId: string; /** * A payload containing arbitrary JSON data. * * @remarks * * Used for complete state snapshots or final results. */ result: JSONPayloadResponse; }; /** @internal */ export declare const WorkflowExecutionCompletedAttributesResponse$inboundSchema: z.ZodType; export declare function workflowExecutionCompletedAttributesResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=workflowexecutioncompletedattributesresponse.d.ts.map