UNPKG

@imput/youtubei.js

Version:

A JavaScript client for YouTube's private API, known as InnerTube. Fork of youtubei.js

30 lines 1.62 kB
import { YTNode } from '../../../helpers.js'; import NavigationEndpoint from '../../NavigationEndpoint.js'; import Author from '../../misc/Author.js'; import Text from '../../misc/Text.js'; import Thumbnail from '../../misc/Thumbnail.js'; class LiveChatPaidSticker extends YTNode { constructor(data) { super(); this.id = data.id; this.author = new Author(data.authorName, data.authorBadges, data.authorPhoto, data.authorExternalChannelId); this.money_chip_background_color = data.moneyChipBackgroundColor; this.money_chip_text_color = data.moneyChipTextColor; this.background_color = data.backgroundColor; this.author_name_text_color = data.authorNameTextColor; this.sticker = Thumbnail.fromResponse(data.sticker); this.sticker_accessibility_label = data.sticker.accessibility.accessibilityData.label; this.sticker_display_width = data.stickerDisplayWidth; this.sticker_display_height = data.stickerDisplayHeight; this.purchase_amount = new Text(data.purchaseAmountText).toString(); this.menu_endpoint = new NavigationEndpoint(data.contextMenuEndpoint); this.context_menu = this.menu_endpoint; this.context_menu_accessibility_label = data.contextMenuAccessibility.accessibilityData.label; this.timestamp = Math.floor(parseInt(data.timestampUsec) / 1000); this.timestamp_usec = data.timestampUsec; this.is_v2_style = data.isV2Style; } } LiveChatPaidSticker.type = 'LiveChatPaidSticker'; export default LiveChatPaidSticker; //# sourceMappingURL=LiveChatPaidSticker.js.map