Interface NotesEditCommentParams

interface NotesEditCommentParams {
    comment_id: number;
    message: string;
    owner_id?: number;
    [key: string]: any;
}

Indexable

[key: string]: any

Properties

comment_id: number

Comment ID.

message: string

New comment text.

owner_id?: number

Note owner ID.

Generated using TypeDoc