/** * This is auto-generated file, don't modify this file manually */ import { WidgetsCommentRepliesItem } from './WidgetsCommentRepliesItem'; export interface WidgetsCommentReplies { /** * Information whether current user can comment the post */ can_post?: 0 | 1; /** * Comments number */ count?: number; replies?: WidgetsCommentRepliesItem[]; /** * Information whether groups can comment the post */ groups_can_post?: 0 | 1; /** * Information whether current user can view the comments */ can_view?: 0 | 1; }