dfp-lib
Version:
This project hosts the Node.JS client library for the SOAP-based DFP API at Google.
41 lines (40 loc) • 2.39 kB
JavaScript
"use strict";
const xmlElement_1 = require("../../common/soap/xmlElement");
class Order extends xmlElement_1.XMLElement {
constructor(id = null, name = null, startDateTime = null, endDateTime = null, unlimitedEndDateTime = null, status = null, isArchived = null, notes = null, externalOrderId = null, poNumber = null, currencyCode = null, advertiserId = null, advertiserContactIds = null, agencyId = null, agencyContactIds = null, creatorId = null, traffickerId = null, secondaryTraffickerIds = null, salespersonId = null, secondarySalespersonIds = null, totalImpressionsDelivered = null, totalClicksDelivered = null, totalViewableImpressionsDelivered = null, totalBudget = null, appliedLabels = null, effectiveAppliedLabels = null, lastModifiedByApp = null, isProgrammatic = null, appliedTeamIds = null, lastModifiedDateTime = null, customFieldValues = null) {
super();
this.id = id;
this.name = name;
this.startDateTime = startDateTime;
this.endDateTime = endDateTime;
this.unlimitedEndDateTime = unlimitedEndDateTime;
this.status = status;
this.isArchived = isArchived;
this.notes = notes;
this.externalOrderId = externalOrderId;
this.poNumber = poNumber;
this.currencyCode = currencyCode;
this.advertiserId = advertiserId;
this.advertiserContactIds = advertiserContactIds;
this.agencyId = agencyId;
this.agencyContactIds = agencyContactIds;
this.creatorId = creatorId;
this.traffickerId = traffickerId;
this.secondaryTraffickerIds = secondaryTraffickerIds;
this.salespersonId = salespersonId;
this.secondarySalespersonIds = secondarySalespersonIds;
this.totalImpressionsDelivered = totalImpressionsDelivered;
this.totalClicksDelivered = totalClicksDelivered;
this.totalViewableImpressionsDelivered = totalViewableImpressionsDelivered;
this.totalBudget = totalBudget;
this.appliedLabels = appliedLabels;
this.effectiveAppliedLabels = effectiveAppliedLabels;
this.lastModifiedByApp = lastModifiedByApp;
this.isProgrammatic = isProgrammatic;
this.appliedTeamIds = appliedTeamIds;
this.lastModifiedDateTime = lastModifiedDateTime;
this.customFieldValues = customFieldValues;
}
}
Order.XSI_TYPE = "Order";
exports.Order = Order;