dfp-lib
Version:
This project hosts the Node.JS client library for the SOAP-based DFP API at Google.
8 lines (7 loc) • 396 B
TypeScript
import { UserRecordTeamAssociation } from './userRecordTeamAssociation';
import { TeamAccessType } from './teamAccessType';
export declare class UserTeamAssociation extends UserRecordTeamAssociation {
protected static XSI_TYPE: string;
userId: number;
constructor(userId?: number, teamId?: number, overriddenTeamAccessType?: TeamAccessType, defaultTeamAccessType?: TeamAccessType);
}