Interface BoardAddTopicParams

interface BoardAddTopicParams {
    attachments?: string | string[];
    from_group?: number | boolean;
    group_id: number;
    text?: string;
    title: string;
    [key: string]: any;
}

Indexable

[key: string]: any

Properties

attachments?: string | string[]
from_group?: number | boolean

For a community: '1' - to post the topic as by the community, '0' - to post the topic as by the user (default)

group_id: number

ID of the community that owns the discussion board.

text?: string

Text of the topic.

title: string

Topic title.

Generated using TypeDoc