dfp-lib
Version:
This project hosts the Node.JS client library for the SOAP-based DFP API at Google.
11 lines (10 loc) • 531 B
JavaScript
;
const workflowRequest_1 = require("./workflowRequest");
class WorkflowExternalConditionRequest extends workflowRequest_1.WorkflowRequest {
constructor(status = null, id = null, workflowRuleName = null, entityId = null, entityType = null, type = null) {
super(id, workflowRuleName, entityId, entityType, type);
this.status = status;
}
}
WorkflowExternalConditionRequest.XSI_TYPE = "WorkflowExternalConditionRequest";
exports.WorkflowExternalConditionRequest = WorkflowExternalConditionRequest;