Interface ListItemNoteTypes

interface ListItemNoteTypes {
    content: string;
    createdAt: Date;
    editedBy: null | string;
    editedTimestamp: null | Date;
    memberID: string;
    mentions: null | APIMentions;
}

Properties

content: string

The content of the note.

createdAt: Date

Date of the note's creation.

editedBy: null | string

ID of the member who edited this note, if edited.

editedTimestamp: null | Date

Date of the note's last edition, if edited.

memberID: string

ID of the member who created this note.

mentions: null | APIMentions

The mentions in this note.