UNPKG

dfp-lib

Version:

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

14 lines (13 loc) 476 B
"use strict"; const xmlElement_1 = require("../../common/soap/xmlElement"); class SavedQuery extends xmlElement_1.XMLElement { constructor(id = null, name = null, reportQuery = null, isCompatibleWithApiVersion = null) { super(); this.id = id; this.name = name; this.reportQuery = reportQuery; this.isCompatibleWithApiVersion = isCompatibleWithApiVersion; } } SavedQuery.XSI_TYPE = "SavedQuery"; exports.SavedQuery = SavedQuery;