Ydb.Topic.StreamReadMessage.InitResponse
*/
class InitResponse extends \Google\Protobuf\Internal\Message
{
/**
* Read session identifier for debug purposes.
*
* Generated from protobuf field string session_id = 1;
*/
protected $session_id = '';
/**
* Constructor.
*
* @param array $data {
* Optional. Data for populating the Message object.
*
* @type string $session_id
* Read session identifier for debug purposes.
* }
*/
public function __construct($data = NULL) {
\GPBMetadata\Protos\YdbTopic::initOnce();
parent::__construct($data);
}
/**
* Read session identifier for debug purposes.
*
* Generated from protobuf field string session_id = 1;
* @return string
*/
public function getSessionId()
{
return $this->session_id;
}
/**
* Read session identifier for debug purposes.
*
* Generated from protobuf field string session_id = 1;
* @param string $var
* @return $this
*/
public function setSessionId($var)
{
GPBUtil::checkString($var, True);
$this->session_id = $var;
return $this;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(InitResponse::class, \Ydb\Topic\StreamReadMessage_InitResponse::class);