UNPKG

dfp-lib

Version:

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

15 lines (14 loc) 519 B
"use strict"; const xmlElement_1 = require("../../common/soap/xmlElement"); class WorkflowRequest extends xmlElement_1.XMLElement { constructor(id = null, workflowRuleName = null, entityId = null, entityType = null, type = null) { super(); this.id = id; this.workflowRuleName = workflowRuleName; this.entityId = entityId; this.entityType = entityType; this.type = type; } } WorkflowRequest.XSI_TYPE = "WorkflowRequest"; exports.WorkflowRequest = WorkflowRequest;