dfp-lib
Version:
This project hosts the Node.JS client library for the SOAP-based DFP API at Google.
20 lines (19 loc) • 1 kB
TypeScript
import { ContentBundle } from '../soap/contentBundle';
import { UpdateResult } from '../soap/updateResult';
import { ContentBundleAction } from '../soap/contentBundleAction';
import { Statement } from '../soap/statement';
import { ContentBundlePage } from '../soap/contentBundlePage';
import { DfpService } from '../lib/dfpService';
import { DfpUser } from '../lib/dfpUser';
export declare class ContentBundleService extends DfpService {
protected static SERVICE_NAME: string;
static ENDPOINT: string;
private static CLASS_MAP;
constructor(user: DfpUser, options?: {
[id: string]: any;
});
createContentBundles(contentBundles: ContentBundle[]): Promise<ContentBundle[]>;
getContentBundlesByStatement(filterStatement: Statement): Promise<ContentBundlePage>;
performContentBundleAction(contentBundleAction: ContentBundleAction, filterStatement: Statement): Promise<UpdateResult>;
updateContentBundles(contentBundles: ContentBundle[]): Promise<ContentBundle[]>;
}