Interface CommentResponse

interface CommentResponse {
    badges: BaseBadge[];
    colors?: Colors;
    comment: string;
    commentVisible?: boolean;
    displayName?: string;
    hasGift: boolean;
    id: string;
    isFirstTime?: boolean;
    isFreeGift?: boolean;
    isOwner: boolean;
    isRepeater?: boolean;
    isStreamer: boolean;
    liveId: string;
    meta?: CommentMeta;
    name: string;
    nickname?: string;
    originalProfileImage?: string;
    paidText?: string;
    price?: number;
    profileImage: string;
    speechText?: string;
    timestamp: string;
    tipInfo?: TipInfo | VcoinTipInfo;
    userId: string;
}

Hierarchy (view full)

Properties

badges: BaseBadge[]
colors?: Colors
comment: string
commentVisible?: boolean
displayName?: string
hasGift: boolean
id: string
isFirstTime?: boolean
isFreeGift?: boolean
isOwner: boolean
isRepeater?: boolean
isStreamer: boolean
liveId: string
name: string
nickname?: string
originalProfileImage?: string
paidText?: string
price?: number
profileImage: string
speechText?: string
timestamp: string
tipInfo?: TipInfo | VcoinTipInfo
userId: string