123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- <?php
- namespace Ydb;
- use Google\Protobuf\Internal\GPBType;
- use Google\Protobuf\Internal\RepeatedField;
- use Google\Protobuf\Internal\GPBUtil;
- class VirtualTimestamp extends \Google\Protobuf\Internal\Message
- {
-
- protected $plan_step = 0;
-
- protected $tx_id = 0;
-
- public function __construct($data = NULL) {
- \GPBMetadata\Protos\YdbCommon::initOnce();
- parent::__construct($data);
- }
-
- public function getPlanStep()
- {
- return $this->plan_step;
- }
-
- public function setPlanStep($var)
- {
- GPBUtil::checkUint64($var);
- $this->plan_step = $var;
- return $this;
- }
-
- public function getTxId()
- {
- return $this->tx_id;
- }
-
- public function setTxId($var)
- {
- GPBUtil::checkUint64($var);
- $this->tx_id = $var;
- return $this;
- }
- }
|