/
githubmirror
/
ydb-php-sdk
Обзор
Документация
Войти
/
githubmirror
/
ydb-php-sdk
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
protos/Ydb/Table/BeginTransactionRequest.php
140 строк
4 KB
Alexei Shabalin
updated protos
17 фев 2023, 13:31
17 фев 2023, 13:31
ae6a264
Код
Авторство
О чём код?
<?php # Generated by the protocol buffer compiler. DO NOT EDIT! # source: protos/ydb_table.proto namespace Ydb\Table; use Google\Protobuf\Internal\GPBType; use Google\Protobuf\Internal\RepeatedField; use Google\Protobuf\Internal\GPBUtil; /** * Begin transaction on given session with given settings * * Generated from protobuf message <code>Ydb.Table.BeginTransactionRequest</code> */ class BeginTransactionRequest extends \Google\Protobuf\Internal\Message { /** * Session identifier * * Generated from protobuf field <code>string session_id = 1;</code> */ protected $session_id = ''; /** * Generated from protobuf field <code>.Ydb.Table.TransactionSettings tx_settings = 2;</code> */ protected $tx_settings = null; /** * Generated from protobuf field <code>.Ydb.Operations.OperationParams operation_params = 3;</code> */ protected $operation_params = null; /** * Constructor. * * @param array $data { * Optional. Data for populating the Message object. * * @type string $session_id * Session identifier * @type \Ydb\Table\TransactionSettings $tx_settings * @type \Ydb\Operations\OperationParams $operation_params * } */ public function __construct($data = NULL) { \GPBMetadata\Protos\YdbTable::initOnce(); parent::__construct($data); } /** * Session identifier * * Generated from protobuf field <code>string session_id = 1;</code> * @return string */ public function getSessionId() { return $this->session_id; } /** * Session identifier * * Generated from protobuf field <code>string session_id = 1;</code> * @param string $var * @return $this */ public function setSessionId($var) { GPBUtil::checkString($var, True); $this->session_id = $var; return $this; } /** * Generated from protobuf field <code>.Ydb.Table.TransactionSettings tx_settings = 2;</code> * @return \Ydb\Table\TransactionSettings|null */ public function getTxSettings() { return $this->tx_settings; } public function hasTxSettings() { return isset($this->tx_settings); } public function clearTxSettings() { unset($this->tx_settings); } /** * Generated from protobuf field <code>.Ydb.Table.TransactionSettings tx_settings = 2;</code> * @param \Ydb\Table\TransactionSettings $var * @return $this */ public function setTxSettings($var) { GPBUtil::checkMessage($var, \Ydb\Table\TransactionSettings::class); $this->tx_settings = $var; return $this; } /** * Generated from protobuf field <code>.Ydb.Operations.OperationParams operation_params = 3;</code> * @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 <code>.Ydb.Operations.OperationParams operation_params = 3;</code> * @param \Ydb\Operations\OperationParams $var * @return $this */ public function setOperationParams($var) { GPBUtil::checkMessage($var, \Ydb\Operations\OperationParams::class); $this->operation_params = $var; return $this; } }