/** *

Contains details about an activity that failed during an execution.

*/ export interface _ActivityFailedEventDetails { /** *

The error code of the failure.

*/ error?: string; /** *

A more detailed explanation of the cause of the failure.

*/ cause?: string; } export declare type _UnmarshalledActivityFailedEventDetails = _ActivityFailedEventDetails;