Interface BoardTopic

interface BoardTopic {
    comments: number;
    created: number;
    created_by: number;
    first_comment: string;
    id: number;
    last_comment: string;
    title: string;
    updated: number;
    updated_by: number;
    [key: string]: any;
}

Indexable

[key: string]: any

Properties

comments: number

Comments number

created: number

Date when the topic has been created in Unixtime

created_by: number

Creator ID

first_comment: string

First comment text

id: number

Topic ID

last_comment: string

Last comment text

title: string

Topic title

updated: number

Date when the topic has been updated in Unixtime

updated_by: number

ID of user who updated the topic

Generated using TypeDoc