Interface BoardTopicComment

interface BoardTopicComment {
    attachments: WallCommentAttachment[];
    date: number;
    from_id: number;
    id: number;
    real_offset: number;
    text: string;
    [key: string]: any;
}

Indexable

[key: string]: any

Properties

attachments: WallCommentAttachment[]
date: number

Date when the comment has been added in Unixtime

from_id: number

Author ID

id: number

Comment ID

real_offset: number

Real position of the comment

text: string

Comment text

Generated using TypeDoc