Interface WidgetsWidgetComment

interface WidgetsWidgetComment {
    attachments: WallCommentAttachment[];
    date: number;
    from_id: number;
    id: number;
    owner_id: number;
    post_type: string;
    short_text_rate: number;
    text: string;
    to_id: number;
    [key: string]: any;
}

Indexable

[key: string]: any

Properties

attachments: WallCommentAttachment[]
date: number

Date when the comment has been added in Unixtime

from_id: number

Comment author ID

id: number

Comment ID

owner_id: number

Wall owner's ID

post_type: string

Post type

short_text_rate: number

Preview length control parameter

text: string

Comment text

to_id: number

Wall owner

Generated using TypeDoc