/
githubmirror
/
ydb-php-sdk
Обзор
Документация
Войти
/
githubmirror
/
ydb-php-sdk
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
protos/Ydb/Issue/IssueMessage/Position.php
114 строк
3 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_issue_message.proto namespace Ydb\Issue\IssueMessage; use Google\Protobuf\Internal\GPBType; use Google\Protobuf\Internal\RepeatedField; use Google\Protobuf\Internal\GPBUtil; /** * Generated from protobuf message <code>Ydb.Issue.IssueMessage.Position</code> */ class Position extends \Google\Protobuf\Internal\Message { /** * Generated from protobuf field <code>uint32 row = 1;</code> */ protected $row = 0; /** * Generated from protobuf field <code>uint32 column = 2;</code> */ protected $column = 0; /** * Generated from protobuf field <code>string file = 3;</code> */ protected $file = ''; /** * Constructor. * * @param array $data { * Optional. Data for populating the Message object. * * @type int $row * @type int $column * @type string $file * } */ public function __construct($data = NULL) { \GPBMetadata\Protos\YdbIssueMessage::initOnce(); parent::__construct($data); } /** * Generated from protobuf field <code>uint32 row = 1;</code> * @return int */ public function getRow() { return $this->row; } /** * Generated from protobuf field <code>uint32 row = 1;</code> * @param int $var * @return $this */ public function setRow($var) { GPBUtil::checkUint32($var); $this->row = $var; return $this; } /** * Generated from protobuf field <code>uint32 column = 2;</code> * @return int */ public function getColumn() { return $this->column; } /** * Generated from protobuf field <code>uint32 column = 2;</code> * @param int $var * @return $this */ public function setColumn($var) { GPBUtil::checkUint32($var); $this->column = $var; return $this; } /** * Generated from protobuf field <code>string file = 3;</code> * @return string */ public function getFile() { return $this->file; } /** * Generated from protobuf field <code>string file = 3;</code> * @param string $var * @return $this */ public function setFile($var) { GPBUtil::checkString($var, True); $this->file = $var; return $this; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(Position::class, \Ydb\Issue\IssueMessage_Position::class);