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