Interface BoardEditCommentParams

interface BoardEditCommentParams {
    attachments?: string | string[];
    comment_id: number;
    group_id: number;
    message?: string;
    topic_id: number;
    [key: string]: any;
}

Indexable

[key: string]: any

Properties

attachments?: string | string[]
comment_id: number

ID of the comment on the topic.

group_id: number

ID of the community that owns the discussion board.

message?: string

(Required if 'attachments' is not set). New comment text.

topic_id: number

Topic ID.

Generated using TypeDoc