Ydb.Table.CreateSessionResult */ class CreateSessionResult extends \Google\Protobuf\Internal\Message { /** * Session identifier * * 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 * Session identifier * } */ public function __construct($data = NULL) { \GPBMetadata\Protos\YdbTable::initOnce(); parent::__construct($data); } /** * Session identifier * * Generated from protobuf field string session_id = 1; * @return string */ public function getSessionId() { return $this->session_id; } /** * Session identifier * * 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; } }