dfp-lib
Version:
This project hosts the Node.JS client library for the SOAP-based DFP API at Google.
15 lines (14 loc) • 543 B
TypeScript
import { DfpUser } from '../lib/dfpUser';
import { DfpService } from '../lib/dfpService';
import { Statement } from '../soap/statement';
import { ResultSet } from '../soap/resultSet';
export declare class PublisherQueryLanguageService extends DfpService {
protected static SERVICE_NAME: string;
protected static WSDL_NAMESPACE: string;
static ENDPOINT: string;
private static CLASS_MAP;
constructor(user: DfpUser, options?: {
[id: string]: any;
});
select(selectStatement: Statement): Promise<ResultSet>;
}