UNPKG

dfp-lib

Version:

This project hosts the Node.JS client library for the SOAP-based DFP API at Google.

21 lines (20 loc) 810 B
"use strict"; const xmlElement_1 = require("../../common/soap/xmlElement"); class AudienceSegment extends xmlElement_1.XMLElement { constructor(id = null, name = null, categoryIds = null, description = null, status = null, size = null, mobileWebSize = null, idfaSize = null, adIdSize = null, dataProvider = null, type = null) { super(); this.id = id; this.name = name; this.categoryIds = categoryIds; this.description = description; this.status = status; this.size = size; this.mobileWebSize = mobileWebSize; this.idfaSize = idfaSize; this.adIdSize = adIdSize; this.dataProvider = dataProvider; this.type = type; } } AudienceSegment.XSI_TYPE = "AudienceSegment"; exports.AudienceSegment = AudienceSegment;