dfp-lib
Version:
This project hosts the Node.JS client library for the SOAP-based DFP API at Google.
10 lines (9 loc) • 331 B
TypeScript
import { XMLElement } from '../../common/soap/xmlElement';
import { Row } from './row';
import { ColumnType } from './columnType';
export declare class ResultSet extends XMLElement {
protected static XSI_TYPE: string;
columnTypes: ColumnType[];
rows: Row[];
constructor(columnTypes?: ColumnType[], rows?: Row[]);
}