UNPKG

dfp-lib

Version:

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

17 lines (16 loc) 712 B
import { CreativeSet } from '../soap/creativeSet'; import { CreativeSetPage } from '../soap/creativeSetPage'; import { Statement } from '../soap/statement'; import { DfpService } from '../lib/dfpService'; import { DfpUser } from '../lib/dfpUser'; export declare class CreativeSetService extends DfpService { protected static SERVICE_NAME: string; static ENDPOINT: string; private static CLASS_MAP; constructor(user: DfpUser, options?: { [id: string]: any; }); createCreativeSet(creativeSet: CreativeSet): Promise<CreativeSet>; getCreativeSetsByStatement(statement: Statement): Promise<CreativeSetPage>; updateCreativeSet(creativeSet: CreativeSet): Promise<CreativeSet>; }