UNPKG

dfp-lib

Version:

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

18 lines (17 loc) 700 B
"use strict"; const xmlElement_1 = require("../../common/soap/xmlElement"); class ProductPackage extends xmlElement_1.XMLElement { constructor(id = null, name = null, notes = null, status = null, isArchived = null, rateCardIds = null, customFieldValues = null, lastModifiedDateTime = null) { super(); this.id = id; this.name = name; this.notes = notes; this.status = status; this.isArchived = isArchived; this.rateCardIds = rateCardIds; this.customFieldValues = customFieldValues; this.lastModifiedDateTime = lastModifiedDateTime; } } ProductPackage.XSI_TYPE = "ProductPackage"; exports.ProductPackage = ProductPackage;