Ydb.Auth.LoginRequest */ class LoginRequest extends \Google\Protobuf\Internal\Message { /** * Generated from protobuf field .Ydb.Operations.OperationParams operation_params = 1; */ protected $operation_params = null; /** * Generated from protobuf field string user = 2; */ protected $user = ''; /** * Generated from protobuf field string password = 3; */ protected $password = ''; /** * Constructor. * * @param array $data { * Optional. Data for populating the Message object. * * @type \Ydb\Operations\OperationParams $operation_params * @type string $user * @type string $password * } */ public function __construct($data = NULL) { \GPBMetadata\Protos\YdbAuth::initOnce(); parent::__construct($data); } /** * Generated from protobuf field .Ydb.Operations.OperationParams operation_params = 1; * @return \Ydb\Operations\OperationParams|null */ public function getOperationParams() { return $this->operation_params; } public function hasOperationParams() { return isset($this->operation_params); } public function clearOperationParams() { unset($this->operation_params); } /** * Generated from protobuf field .Ydb.Operations.OperationParams operation_params = 1; * @param \Ydb\Operations\OperationParams $var * @return $this */ public function setOperationParams($var) { GPBUtil::checkMessage($var, \Ydb\Operations\OperationParams::class); $this->operation_params = $var; return $this; } /** * Generated from protobuf field string user = 2; * @return string */ public function getUser() { return $this->user; } /** * Generated from protobuf field string user = 2; * @param string $var * @return $this */ public function setUser($var) { GPBUtil::checkString($var, True); $this->user = $var; return $this; } /** * Generated from protobuf field string password = 3; * @return string */ public function getPassword() { return $this->password; } /** * Generated from protobuf field string password = 3; * @param string $var * @return $this */ public function setPassword($var) { GPBUtil::checkString($var, True); $this->password = $var; return $this; } }