Interface LiveVideoCommentEvent

interface LiveVideoCommentEvent {
    caption: null | string;
    caption_is_edited: boolean;
    client_subscription_id: string;
    comment_count: number;
    comment_likes_enabled: boolean;
    comment_muted: number;
    comments: null | LiveVideoComment[];
    has_more_comments: boolean;
    has_more_headload_comments: boolean;
    live_seconds_per_comment: number;
    media_header_display: string;
    pinned_comment: null | LiveVideoComment;
    system_comments: null | LiveVideoSystemComment[];
}

Properties

caption: null | string
caption_is_edited: boolean
client_subscription_id: string
comment_count: number
comment_likes_enabled: boolean
comment_muted: number
comments: null | LiveVideoComment[]
has_more_comments: boolean
has_more_headload_comments: boolean
live_seconds_per_comment: number
media_header_display: string
pinned_comment: null | LiveVideoComment
system_comments: null | LiveVideoSystemComment[]