dfp-lib
Version:
This project hosts the Node.JS client library for the SOAP-based DFP API at Google.
17 lines (16 loc) • 625 B
TypeScript
import { Team } from '../soap/team';
import { TeamPage } from '../soap/teamPage';
import { Statement } from '../soap/statement';
import { DfpService } from '../lib/dfpService';
import { DfpUser } from '../lib/dfpUser';
export declare class TeamService extends DfpService {
protected static SERVICE_NAME: string;
static ENDPOINT: string;
private static CLASS_MAP;
constructor(user: DfpUser, options?: {
[id: string]: any;
});
createTeams(teams: Team[]): Promise<Team[]>;
getTeamsByStatement(filterStatement: Statement): Promise<TeamPage>;
updateTeams(teams: Team[]): Promise<Team[]>;
}