Represents service endpoint execution data.

interface ServiceEndpointExecutionData {
    definition?: TaskOrchestrationOwner;
    finishTime?: Date;
    id?: number;
    owner?: TaskOrchestrationOwner;
    planType?: string;
    result?: TaskResult;
    startTime?: Date;
}

Properties

Gets the definition of service endpoint execution owner.

finishTime?: Date

Gets the finish time of service endpoint execution.

id?: number

Gets the Id of service endpoint execution data.

Gets the owner of service endpoint execution data.

planType?: string

Gets the plan type of service endpoint execution data.

result?: TaskResult

Gets the result of service endpoint execution.

startTime?: Date

Gets the start time of service endpoint execution.