UNPKG

dfp-lib

Version:

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

15 lines (14 loc) 537 B
"use strict"; const xmlElement_1 = require("../../common/soap/xmlElement"); class ProgressRule extends xmlElement_1.XMLElement { constructor(actions = null, name = null, evaluationStatus = null, evaluationTime = null, isExternal = null) { super(); this.actions = actions; this.name = name; this.evaluationStatus = evaluationStatus; this.evaluationTime = evaluationTime; this.isExternal = isExternal; } } ProgressRule.XSI_TYPE = "ProgressRule"; exports.ProgressRule = ProgressRule;