dfp-lib
Version:
This project hosts the Node.JS client library for the SOAP-based DFP API at Google.
17 lines (16 loc) • 685 B
TypeScript
import { DfpService } from '../lib/dfpService';
import { DfpUser } from '../lib/dfpUser';
import { Creative } from '../soap/creative';
import { CreativePage } from '../soap/creativePage';
import { Statement } from '../soap/statement';
export declare class CreativeService extends DfpService {
protected static SERVICE_NAME: string;
static ENDPOINT: string;
private static CLASS_MAP;
constructor(user: DfpUser, options?: {
[id: string]: any;
});
createCreatives(creatives: Creative[]): Promise<Creative[]>;
getCreativesByStatement(filterStatement: Statement): Promise<CreativePage>;
updateCreatives(creatives: Creative[]): Promise<Creative[]>;
}