/** *
Contains details about the successful termination of the execution.
*/ export interface _ExecutionSucceededEventDetails { /** *The JSON data output by the execution.
*/ output?: string; } export declare type _UnmarshalledExecutionSucceededEventDetails = _ExecutionSucceededEventDetails;