Interface NotesNoteComment

interface NotesNoteComment {
    date: number;
    id: number;
    message: string;
    nid: number;
    oid: number;
    reply_to: number;
    uid: number;
    [key: string]: any;
}

Indexable

[key: string]: any

Properties

date: number

Date when the comment has beed added in Unixtime

id: number

Comment ID

message: string

Comment text

nid: number

Note ID

oid: number

Note ID

reply_to: number

ID of replied comment

uid: number

Comment author's ID

Generated using TypeDoc