dfp-lib
Version:
This project hosts the Node.JS client library for the SOAP-based DFP API at Google.
9 lines (8 loc) • 332 B
TypeScript
import { XMLElement } from '../../common/soap/xmlElement';
import { StringValueMapEntry } from './stringValueMapEntry';
export declare class Statement extends XMLElement {
protected static XSI_TYPE: string;
query: string;
values: StringValueMapEntry[];
constructor(query?: string, values?: StringValueMapEntry[]);
}