/** *

Contains details about the start of a task during an execution.

*/ export interface _TaskStartedEventDetails { /** *

The action of the resource called by a task state.

*/ resourceType: string; /** *

The service name of the resource in a task state.

*/ resource: string; } export declare type _UnmarshalledTaskStartedEventDetails = _TaskStartedEventDetails;