dfp-lib
Version:
This project hosts the Node.JS client library for the SOAP-based DFP API at Google.
13 lines (12 loc) • 507 B
TypeScript
import { XMLElement } from '../../common/soap/xmlElement';
import { TeamAccessType } from './teamAccessType';
export declare class Team extends XMLElement {
protected static XSI_TYPE: string;
id: number;
name: string;
description: string;
hasAllCompanies: boolean;
hasAllInventory: boolean;
teamAccessType: TeamAccessType;
constructor(id?: number, name?: string, description?: string, hasAllCompanies?: boolean, hasAllInventory?: boolean, teamAccessType?: TeamAccessType);
}