dfp-lib
Version:
This project hosts the Node.JS client library for the SOAP-based DFP API at Google.
26 lines (25 loc) • 1.35 kB
JavaScript
"use strict";
const xmlElement_1 = require("../../common/soap/xmlElement");
class LiveStreamEvent extends xmlElement_1.XMLElement {
constructor(id = null, name = null, description = null, status = null, creationDateTime = null, lastModifiedDateTime = null, startDateTime = null, endDateTime = null, totalEstimatedConcurrentUsers = null, contentUrls = null, adTags = null, liveStreamEventCode = null, authenticationService = null, authenticationKey = null, dvrWindowSeconds = null, adBreakFillType = null) {
super();
this.id = id;
this.name = name;
this.description = description;
this.status = status;
this.creationDateTime = creationDateTime;
this.lastModifiedDateTime = lastModifiedDateTime;
this.startDateTime = startDateTime;
this.endDateTime = endDateTime;
this.totalEstimatedConcurrentUsers = totalEstimatedConcurrentUsers;
this.contentUrls = contentUrls;
this.adTags = adTags;
this.liveStreamEventCode = liveStreamEventCode;
this.authenticationService = authenticationService;
this.authenticationKey = authenticationKey;
this.dvrWindowSeconds = dvrWindowSeconds;
this.adBreakFillType = adBreakFillType;
}
}
LiveStreamEvent.XSI_TYPE = "LiveStreamEvent";
exports.LiveStreamEvent = LiveStreamEvent;