Interface CommentThread

interface CommentThread {
    can_post: number | boolean;
    count: number;
    groups_can_post: number | boolean;
    items: WallWallComment[];
    show_reply_button: number | boolean;
    [key: string]: any;
}

Indexable

[key: string]: any

Properties

can_post: number | boolean

Information whether current user can comment the post

count: number

Comments number

groups_can_post: number | boolean

Information whether groups can comment the post

show_reply_button: number | boolean

Information whether recommended to display reply button

Generated using TypeDoc