dfp-lib
Version:
This project hosts the Node.JS client library for the SOAP-based DFP API at Google.
13 lines (12 loc) • 391 B
JavaScript
;
const xmlElement_1 = require("../../common/soap/xmlElement");
class ApiError extends xmlElement_1.XMLElement {
constructor(fieldPath = null, trigger = null, errorString = null) {
super();
this.fieldPath = fieldPath;
this.trigger = trigger;
this.errorString = errorString;
}
}
ApiError.XSI_TYPE = "ApiError";
exports.ApiError = ApiError;