Represents a work item related to some source item. These are retrieved from Source Providers.

interface SourceRelatedWorkItem {
    _links?: any;
    assignedTo?: IdentityRef;
    currentState?: string;
    description?: string;
    id?: string;
    providerName?: string;
    title?: string;
    type?: string;
}

Properties

_links?: any
assignedTo?: IdentityRef

Identity ref for the person that the work item is assigned to.

currentState?: string

Current state of the work item, e.g. Active, Resolved, Closed, etc.

description?: string

Long description for the work item.

id?: string

Unique identifier for the work item

providerName?: string

The name of the provider the work item is associated with.

title?: string

Short name for the work item.

type?: string

Type of work item, e.g. Bug, Task, User Story, etc.