/** *
Contains details about a task submitted to a resource .
*/ export interface _TaskSubmittedEventDetails { /** *The action of the resource called by a task state.
*/ resourceType: string; /** *The service name of the resource in a task state.
*/ resource: string; /** *The response from a resource when a task has started.
*/ output?: string; } export declare type _UnmarshalledTaskSubmittedEventDetails = _TaskSubmittedEventDetails;