UNPKG

dfp-lib

Version:

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

14 lines (13 loc) 550 B
import { CreativeTemplatePage } from '../soap/creativeTemplatePage'; import { Statement } from '../soap/statement'; import { DfpService } from '../lib/dfpService'; import { DfpUser } from '../lib/dfpUser'; export declare class CreativeTemplateService extends DfpService { protected static SERVICE_NAME: string; static ENDPOINT: string; private static CLASS_MAP; constructor(user: DfpUser, options?: { [id: string]: any; }); getCreativeTemplatesByStatement(filterStatement: Statement): Promise<CreativeTemplatePage>; }