UNPKG

dfp-lib

Version:

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

16 lines (15 loc) 553 B
import { DfpUser } from '../lib/dfpUser'; import { DfpService } from '../lib/dfpService'; import { Network } from '../soap/network'; export declare class NetworkService extends DfpService { protected static SERVICE_NAME: string; static ENDPOINT: string; private static CLASS_MAP; constructor(user: DfpUser, options?: { [id: string]: any; }); getAllNetworks(): Promise<Network[]>; getCurrentNetwork(): Promise<Network>; makeTestNetwork(): Promise<Network>; updateNetwork(network: Network): Promise<Network>; }