dfp-lib
Version:
This project hosts the Node.JS client library for the SOAP-based DFP API at Google.
13 lines (12 loc) • 679 B
TypeScript
import { UserRecord } from './userRecord';
import { BaseCustomFieldValue } from './baseCustomFieldValue';
export declare class User extends UserRecord {
protected static XSI_TYPE: string;
isActive: boolean;
isEmailNotificationAllowed: boolean;
externalId: string;
isServiceAccount: boolean;
ordersUiLocalTimeZoneId: string;
customFieldValues: BaseCustomFieldValue[];
constructor(isActive?: boolean, isEmailNotificationAllowed?: boolean, externalId?: string, isServiceAccount?: boolean, ordersUiLocalTimeZoneId?: string, customFieldValues?: BaseCustomFieldValue[], id?: number, name?: string, email?: string, roleId?: number, roleName?: string);
}