UNPKG

dfp-lib

Version:

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

11 lines (10 loc) 413 B
import { XMLElement } from '../../common/soap/xmlElement'; import { ReportQuery } from './reportQuery'; export declare class SavedQuery extends XMLElement { protected static XSI_TYPE: string; id: number; name: string; reportQuery: ReportQuery; isCompatibleWithApiVersion: boolean; constructor(id?: number, name?: string, reportQuery?: ReportQuery, isCompatibleWithApiVersion?: boolean); }