dfp-lib
Version:
This project hosts the Node.JS client library for the SOAP-based DFP API at Google.
15 lines (14 loc) • 897 B
JavaScript
;
const audienceSegment_1 = require("./audienceSegment");
class ThirdPartyAudienceSegment extends audienceSegment_1.AudienceSegment {
constructor(approvalStatus = null, cost = null, licenseType = null, startDateTime = null, endDateTime = null, id = null, name = null, categoryIds = null, description = null, status = null, size = null, mobileWebSize = null, idfaSize = null, adIdSize = null, dataProvider = null, type = null) {
super(id, name, categoryIds, description, status, size, mobileWebSize, idfaSize, adIdSize, dataProvider, type);
this.approvalStatus = approvalStatus;
this.cost = cost;
this.licenseType = licenseType;
this.startDateTime = startDateTime;
this.endDateTime = endDateTime;
}
}
ThirdPartyAudienceSegment.XSI_TYPE = "ThirdPartyAudienceSegment";
exports.ThirdPartyAudienceSegment = ThirdPartyAudienceSegment;