/** *
Contains details about the start of an activity during an execution.
*/ export interface _ActivityStartedEventDetails { /** *The name of the worker that the task is assigned to. These names are provided by the workers when calling GetActivityTask.
*/ workerName?: string; } export declare type _UnmarshalledActivityStartedEventDetails = _ActivityStartedEventDetails;