Contains information about various artifacts mentioned in the comment

interface CommentMention {
    artifactId?: string;
    commentId?: number;
    mentionedArtifact?: string;
    type?: CommentMentionType;
    url?: string;
}

Hierarchy (View Summary)

Properties

artifactId?: string

Id of the artifact this mention belongs to

commentId?: number

Id of the comment associated with this mention. Nullable to support legacy mentions which can potentially have null commentId

mentionedArtifact?: string

Value of the mentioned artifact. Expected Value varies by CommentMentionType: Person: VSID associated with the identity Work Item: ID of the work item Pull Request: ID of the Pull Request

The context which represent where this mentioned was parsed from

url?: string

REST URL for the resource.