Base class for WIT REST resources.

interface CommentMention {
    _links?: any;
    artifactId?: string;
    artifactType?: string;
    commentId?: number;
    targetId?: string;
    url?: string;
}

Hierarchy (View Summary)

Properties

_links?: any

Link references to related REST resources.

artifactId?: string

The artifact portion of the parsed text. (i.e. the work item's id)

artifactType?: string

The type the parser assigned to the mention. (i.e. person, work item, etc)

commentId?: number

The comment id of the mention.

targetId?: string

The resolved target of the mention. An example of this could be a user's tfid

url?: string

REST URL for the resource.