UNPKG

dfp-lib

Version:

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

16 lines (15 loc) 647 B
"use strict"; const xmlElement_1 = require("../../common/soap/xmlElement"); class WorkflowProgress extends xmlElement_1.XMLElement { constructor(steps = null, submitterId = null, evaluationStatus = null, submissionTime = null, evaluationTime = null, isProcessing = null) { super(); this.steps = steps; this.submitterId = submitterId; this.evaluationStatus = evaluationStatus; this.submissionTime = submissionTime; this.evaluationTime = evaluationTime; this.isProcessing = isProcessing; } } WorkflowProgress.XSI_TYPE = "WorkflowProgress"; exports.WorkflowProgress = WorkflowProgress;