Ydb.Table.TransactionMeta */ class TransactionMeta extends \Google\Protobuf\Internal\Message { /** * Transaction identifier * * Generated from protobuf field string id = 1; */ protected $id = ''; /** * Constructor. * * @param array $data { * Optional. Data for populating the Message object. * * @type string $id * Transaction identifier * } */ public function __construct($data = NULL) { \GPBMetadata\Protos\YdbTable::initOnce(); parent::__construct($data); } /** * Transaction identifier * * Generated from protobuf field string id = 1; * @return string */ public function getId() { return $this->id; } /** * Transaction identifier * * Generated from protobuf field string id = 1; * @param string $var * @return $this */ public function setId($var) { GPBUtil::checkString($var, True); $this->id = $var; return $this; } }