Interface VideoCreateCommentParams

interface VideoCreateCommentParams {
    attachments?: string | string[];
    from_group?: number | boolean;
    guid?: string;
    message?: string;
    owner_id?: number;
    reply_to_comment?: number;
    sticker_id?: number;
    track_code?: string;
    video_id: number;
    [key: string]: any;
}

Indexable

[key: string]: any

Properties

attachments?: string | string[]
from_group?: number | boolean

'1' - to post the comment from a community name (only if 'owner_id'<0)

guid?: string
message?: string

New comment text.

owner_id?: number

ID of the user or community that owns the video.

reply_to_comment?: number
sticker_id?: number
track_code?: string
video_id: number

Video ID.

Generated using TypeDoc