UNPKG

dfp-lib

Version:

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

16 lines (15 loc) 758 B
"use strict"; const userRecord_1 = require("./userRecord"); class User extends userRecord_1.UserRecord { constructor(isActive = null, isEmailNotificationAllowed = null, externalId = null, isServiceAccount = null, ordersUiLocalTimeZoneId = null, customFieldValues = null, id = null, name = null, email = null, roleId = null, roleName = null) { super(id, name, email, roleId, roleName); this.isActive = isActive; this.isEmailNotificationAllowed = isEmailNotificationAllowed; this.externalId = externalId; this.isServiceAccount = isServiceAccount; this.ordersUiLocalTimeZoneId = ordersUiLocalTimeZoneId; this.customFieldValues = customFieldValues; } } User.XSI_TYPE = "User"; exports.User = User;