@duell10111/youtubei.js
Version:
A JavaScript client for YouTube's private API, known as InnerTube.
18 lines • 736 B
JavaScript
import { YTNode } from '../../../helpers.js';
import { Parser } from '../../../index.js';
import LiveChatSponsorshipsHeader from './LiveChatSponsorshipsHeader.js';
export default class LiveChatSponsorshipsGiftPurchaseAnnouncement extends YTNode {
static type = 'LiveChatSponsorshipsGiftPurchaseAnnouncement';
id;
timestamp_usec;
author_external_channel_id;
header;
constructor(data) {
super();
this.id = data.id;
this.timestamp_usec = data.timestampUsec;
this.author_external_channel_id = data.authorExternalChannelId;
this.header = Parser.parseItem(data.header, LiveChatSponsorshipsHeader);
}
}
//# sourceMappingURL=LiveChatSponsorshipsGiftPurchaseAnnouncement.js.map