Interface NotesCreateCommentParams

interface NotesCreateCommentParams {
    guid?: string;
    message: string;
    note_id: number;
    owner_id?: number;
    reply_to?: number;
    [key: string]: any;
}

Indexable

[key: string]: any

Properties

guid?: string
message: string

Comment text.

note_id: number

Note ID.

owner_id?: number

Note owner ID.

reply_to?: number

ID of the user to whom the reply is addressed (if the comment is a reply to another comment).

Generated using TypeDoc