/** *

Contains details about an activity timeout that occurred during an execution.

*/ export interface _ActivityTimedOutEventDetails { /** *

The error code of the failure.

*/ error?: string; /** *

A more detailed explanation of the cause of the timeout.

*/ cause?: string; } export declare type _UnmarshalledActivityTimedOutEventDetails = _ActivityTimedOutEventDetails;