UNPKG

dfp-lib

Version:

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

14 lines (13 loc) 461 B
"use strict"; const xmlElement_1 = require("../../common/soap/xmlElement"); class OfflineError extends xmlElement_1.XMLElement { constructor(fieldPath = null, trigger = null, errorTime = null, errorString = null) { super(); this.fieldPath = fieldPath; this.trigger = trigger; this.errorTime = errorTime; this.errorString = errorString; } } OfflineError.XSI_TYPE = "ApiError"; exports.OfflineError = OfflineError;