mirror of
https://github.com/chirpstack/chirpstack.git
synced 2025-06-15 22:08:23 +00:00
Bump version to 4.9.0-test.2
This commit is contained in:
65
api/php/generated/Chirpstack/Api/GetRandomDevAddrResponse.php
vendored
Normal file
65
api/php/generated/Chirpstack/Api/GetRandomDevAddrResponse.php
vendored
Normal file
@ -0,0 +1,65 @@
|
||||
<?php
|
||||
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
||||
# source: api/device.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.GetRandomDevAddrResponse</code>
|
||||
*/
|
||||
class GetRandomDevAddrResponse extends \Google\Protobuf\Internal\Message
|
||||
{
|
||||
/**
|
||||
* DevAddr.
|
||||
*
|
||||
* Generated from protobuf field <code>string dev_addr = 1;</code>
|
||||
*/
|
||||
protected $dev_addr = '';
|
||||
|
||||
/**
|
||||
* Constructor.
|
||||
*
|
||||
* @param array $data {
|
||||
* Optional. Data for populating the Message object.
|
||||
*
|
||||
* @type string $dev_addr
|
||||
* DevAddr.
|
||||
* }
|
||||
*/
|
||||
public function __construct($data = NULL) {
|
||||
\GPBMetadata\Chirpstack\Api\Device::initOnce();
|
||||
parent::__construct($data);
|
||||
}
|
||||
|
||||
/**
|
||||
* DevAddr.
|
||||
*
|
||||
* Generated from protobuf field <code>string dev_addr = 1;</code>
|
||||
* @return string
|
||||
*/
|
||||
public function getDevAddr()
|
||||
{
|
||||
return $this->dev_addr;
|
||||
}
|
||||
|
||||
/**
|
||||
* DevAddr.
|
||||
*
|
||||
* Generated from protobuf field <code>string dev_addr = 1;</code>
|
||||
* @param string $var
|
||||
* @return $this
|
||||
*/
|
||||
public function setDevAddr($var)
|
||||
{
|
||||
GPBUtil::checkString($var, True);
|
||||
$this->dev_addr = $var;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
}
|
||||
|
Reference in New Issue
Block a user