__construct() public method

public __construct ( $id = null, $name = null, $email = null, $roleId = null, $roleName = null )
 public function __construct($isActive = NULL, $isEmailNotificationAllowed = NULL, $externalId = NULL, $ordersUiLocalTimeZoneId = NULL, $customFieldValues = NULL, $id = NULL, $name = NULL, $email = NULL, $roleId = NULL, $roleName = NULL, $preferredLocale = NULL, $UserRecordType = NULL)
 {
     parent::__construct();
     $this->isActive = $isActive;
     $this->isEmailNotificationAllowed = $isEmailNotificationAllowed;
     $this->externalId = $externalId;
     $this->ordersUiLocalTimeZoneId = $ordersUiLocalTimeZoneId;
     $this->customFieldValues = $customFieldValues;
     $this->id = $id;
     $this->name = $name;
     $this->email = $email;
     $this->roleId = $roleId;
     $this->roleName = $roleName;
     $this->preferredLocale = $preferredLocale;
     $this->UserRecordType = $UserRecordType;
 }
 public function __construct($isActive = null, $isEmailNotificationAllowed = null, $externalId = null, $isServiceAccount = null, $ordersUiLocalTimeZoneId = null, $customFieldValues = null, $id = null, $name = null, $email = null, $roleId = null, $roleName = null, $preferredLocale = null)
 {
     parent::__construct();
     $this->isActive = $isActive;
     $this->isEmailNotificationAllowed = $isEmailNotificationAllowed;
     $this->externalId = $externalId;
     $this->isServiceAccount = $isServiceAccount;
     $this->ordersUiLocalTimeZoneId = $ordersUiLocalTimeZoneId;
     $this->customFieldValues = $customFieldValues;
     $this->id = $id;
     $this->name = $name;
     $this->email = $email;
     $this->roleId = $roleId;
     $this->roleName = $roleName;
     $this->preferredLocale = $preferredLocale;
 }
Example #3
0
 public function __construct($isActive = NULL, $isEmailNotificationAllowed = NULL, $id = NULL, $name = NULL, $email = NULL, $roleId = NULL, $roleName = NULL, $preferredLocale = NULL, $teamIds = NULL, $UserRecordType = NULL)
 {
     if (get_parent_class('User')) {
         parent::__construct();
     }
     $this->isActive = $isActive;
     $this->isEmailNotificationAllowed = $isEmailNotificationAllowed;
     $this->id = $id;
     $this->name = $name;
     $this->email = $email;
     $this->roleId = $roleId;
     $this->roleName = $roleName;
     $this->preferredLocale = $preferredLocale;
     $this->teamIds = $teamIds;
     $this->UserRecordType = $UserRecordType;
 }
Example #4
0
 public function __construct($isActive = null, $isEmailNotificationAllowed = null, $ordersUiLocalTimeZoneId = null, $id = null, $name = null, $email = null, $roleId = null, $roleName = null, $preferredLocale = null, $UserRecordType = null)
 {
     parent::__construct();
     $this->isActive = $isActive;
     $this->isEmailNotificationAllowed = $isEmailNotificationAllowed;
     $this->ordersUiLocalTimeZoneId = $ordersUiLocalTimeZoneId;
     $this->id = $id;
     $this->name = $name;
     $this->email = $email;
     $this->roleId = $roleId;
     $this->roleName = $roleName;
     $this->preferredLocale = $preferredLocale;
     $this->UserRecordType = $UserRecordType;
 }