interface Comment {
    body: MarkdownString;
    contextValue?: string;
    label?: string;
    mode?: CommentMode;
    timestamp?: string;
    uniqueIdInThread: number;
    userIconPath?: string;
    userName: string;
}

Properties

body: MarkdownString
contextValue?: string
label?: string
timestamp?: string

Timestamp serialized as ISO date string via Date.prototype.toISOString

uniqueIdInThread: number
userIconPath?: string
userName: string