Scalr\Model\Entity\Account\User\UserSetting::__construct PHP Метод

__construct() публичный Метод

Constructor
public __construct ( string $userId = null, string $name = null, string $value = null )
$userId string optional The identifier of the user
$name string optional The name of the setting
$value string optional The value of the setting
    public function __construct($userId = null, $name = null, $value = null)
    {
        $this->userId = $userId;
        $this->name = $name;
        $this->value = $value === null ? null : (string) $value;
    }
UserSetting