dfp-lib
Version:
This project hosts the Node.JS client library for the SOAP-based DFP API at Google.
11 lines (10 loc) • 453 B
JavaScript
;
const apiError_1 = require("./apiError");
class ProposalLineItemProgrammaticError extends apiError_1.ApiError {
constructor(reason, fieldPath = null, trigger = null, errorString = null) {
super(fieldPath, trigger, errorString);
this.reason = reason;
}
}
ProposalLineItemProgrammaticError.XSI_TYPE = "ProposalLineItemProgrammaticError";
exports.ProposalLineItemProgrammaticError = ProposalLineItemProgrammaticError;