/** *
Contains details about an abort of an execution.
*/ export interface _ExecutionAbortedEventDetails { /** *The error code of the failure.
*/ error?: string; /** *A more detailed explanation of the cause of the failure.
*/ cause?: string; } export declare type _UnmarshalledExecutionAbortedEventDetails = _ExecutionAbortedEventDetails;