Ydb.Table.KeepAliveResponse
*/
class KeepAliveResponse extends \Google\Protobuf\Internal\Message
{
/**
* Generated from protobuf field .Ydb.Operations.Operation operation = 1;
*/
protected $operation = null;
/**
* Constructor.
*
* @param array $data {
* Optional. Data for populating the Message object.
*
* @type \Ydb\Operations\Operation $operation
* }
*/
public function __construct($data = NULL) {
\GPBMetadata\Protos\YdbTable::initOnce();
parent::__construct($data);
}
/**
* Generated from protobuf field .Ydb.Operations.Operation operation = 1;
* @return \Ydb\Operations\Operation|null
*/
public function getOperation()
{
return $this->operation;
}
public function hasOperation()
{
return isset($this->operation);
}
public function clearOperation()
{
unset($this->operation);
}
/**
* Generated from protobuf field .Ydb.Operations.Operation operation = 1;
* @param \Ydb\Operations\Operation $var
* @return $this
*/
public function setOperation($var)
{
GPBUtil::checkMessage($var, \Ydb\Operations\Operation::class);
$this->operation = $var;
return $this;
}
}