mirror of
https://github.com/chirpstack/chirpstack.git
synced 2025-06-22 17:08:54 +00:00
Bump version to 4.9.0-test.2
This commit is contained in:
99
api/php/generated/Chirpstack/Api/GetRelayGatewayRequest.php
vendored
Normal file
99
api/php/generated/Chirpstack/Api/GetRelayGatewayRequest.php
vendored
Normal file
@ -0,0 +1,99 @@
|
||||
<?php
|
||||
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
||||
# source: api/gateway.proto
|
||||
|
||||
namespace Chirpstack\Api;
|
||||
|
||||
use Google\Protobuf\Internal\GPBType;
|
||||
use Google\Protobuf\Internal\RepeatedField;
|
||||
use Google\Protobuf\Internal\GPBUtil;
|
||||
|
||||
/**
|
||||
* Generated from protobuf message <code>api.GetRelayGatewayRequest</code>
|
||||
*/
|
||||
class GetRelayGatewayRequest extends \Google\Protobuf\Internal\Message
|
||||
{
|
||||
/**
|
||||
* Tenant ID (UUID).
|
||||
*
|
||||
* Generated from protobuf field <code>string tenant_id = 1;</code>
|
||||
*/
|
||||
protected $tenant_id = '';
|
||||
/**
|
||||
* Relay ID (4 byte HEX).
|
||||
*
|
||||
* Generated from protobuf field <code>string relay_id = 2;</code>
|
||||
*/
|
||||
protected $relay_id = '';
|
||||
|
||||
/**
|
||||
* Constructor.
|
||||
*
|
||||
* @param array $data {
|
||||
* Optional. Data for populating the Message object.
|
||||
*
|
||||
* @type string $tenant_id
|
||||
* Tenant ID (UUID).
|
||||
* @type string $relay_id
|
||||
* Relay ID (4 byte HEX).
|
||||
* }
|
||||
*/
|
||||
public function __construct($data = NULL) {
|
||||
\GPBMetadata\Chirpstack\Api\Gateway::initOnce();
|
||||
parent::__construct($data);
|
||||
}
|
||||
|
||||
/**
|
||||
* Tenant ID (UUID).
|
||||
*
|
||||
* Generated from protobuf field <code>string tenant_id = 1;</code>
|
||||
* @return string
|
||||
*/
|
||||
public function getTenantId()
|
||||
{
|
||||
return $this->tenant_id;
|
||||
}
|
||||
|
||||
/**
|
||||
* Tenant ID (UUID).
|
||||
*
|
||||
* Generated from protobuf field <code>string tenant_id = 1;</code>
|
||||
* @param string $var
|
||||
* @return $this
|
||||
*/
|
||||
public function setTenantId($var)
|
||||
{
|
||||
GPBUtil::checkString($var, True);
|
||||
$this->tenant_id = $var;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Relay ID (4 byte HEX).
|
||||
*
|
||||
* Generated from protobuf field <code>string relay_id = 2;</code>
|
||||
* @return string
|
||||
*/
|
||||
public function getRelayId()
|
||||
{
|
||||
return $this->relay_id;
|
||||
}
|
||||
|
||||
/**
|
||||
* Relay ID (4 byte HEX).
|
||||
*
|
||||
* Generated from protobuf field <code>string relay_id = 2;</code>
|
||||
* @param string $var
|
||||
* @return $this
|
||||
*/
|
||||
public function setRelayId($var)
|
||||
{
|
||||
GPBUtil::checkString($var, True);
|
||||
$this->relay_id = $var;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
}
|
||||
|
Reference in New Issue
Block a user