/** * This is auto-generated file, don't modify this file manually */ import { BaseLikesInfo } from '../base/BaseLikesInfo'; import { BaseRepostsInfo } from '../base/BaseRepostsInfo'; import { UsersUserFull } from '../users/UsersUserFull'; import { WallCommentAttachment } from '../wall/WallCommentAttachment'; import { WallPostSource } from '../wall/WallPostSource'; import { WidgetsCommentMedia } from './WidgetsCommentMedia'; import { WidgetsCommentReplies } from './WidgetsCommentReplies'; export interface WidgetsWidgetComment { attachments?: WallCommentAttachment[]; /** * Wall owner's ID */ owner_id?: number; /** * Information whether current user can delete the comment */ can_delete?: 0 | 1; comments?: WidgetsCommentReplies; /** * Date when the comment has been added in Unixtime */ date?: number; /** * Comment author ID */ from_id?: number; /** * Comment ID */ id?: number; likes?: BaseLikesInfo; media?: WidgetsCommentMedia; post_source?: WallPostSource; /** * Post type */ post_type?: string; reposts?: BaseRepostsInfo; /** * Comment text */ text?: string; /** * Wall owner */ to_id?: number; user?: UsersUserFull; /** * Information whether the post in favorites list */ is_favorite?: 0 | 1; /** * Preview length control parameter */ short_text_rate?: number; }