mirror of
https://github.com/chirpstack/chirpstack.git
synced 2025-06-21 00:22:57 +00:00
Bump version to 4.9.0-test.2
This commit is contained in:
171
api/php/generated/Chirpstack/Api/MulticastGroupQueueItem.php
vendored
Normal file
171
api/php/generated/Chirpstack/Api/MulticastGroupQueueItem.php
vendored
Normal file
@ -0,0 +1,171 @@
|
||||
<?php
|
||||
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
||||
# source: api/multicast_group.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.MulticastGroupQueueItem</code>
|
||||
*/
|
||||
class MulticastGroupQueueItem extends \Google\Protobuf\Internal\Message
|
||||
{
|
||||
/**
|
||||
* Multicast group ID.
|
||||
*
|
||||
* Generated from protobuf field <code>string multicast_group_id = 1;</code>
|
||||
*/
|
||||
protected $multicast_group_id = '';
|
||||
/**
|
||||
* Downlink frame-counter.
|
||||
* This will be automatically set on enqueue.
|
||||
*
|
||||
* Generated from protobuf field <code>uint32 f_cnt = 2;</code>
|
||||
*/
|
||||
protected $f_cnt = 0;
|
||||
/**
|
||||
* FPort (must be > 0).
|
||||
*
|
||||
* Generated from protobuf field <code>uint32 f_port = 3;</code>
|
||||
*/
|
||||
protected $f_port = 0;
|
||||
/**
|
||||
* Payload.
|
||||
*
|
||||
* Generated from protobuf field <code>bytes data = 4;</code>
|
||||
*/
|
||||
protected $data = '';
|
||||
|
||||
/**
|
||||
* Constructor.
|
||||
*
|
||||
* @param array $data {
|
||||
* Optional. Data for populating the Message object.
|
||||
*
|
||||
* @type string $multicast_group_id
|
||||
* Multicast group ID.
|
||||
* @type int $f_cnt
|
||||
* Downlink frame-counter.
|
||||
* This will be automatically set on enqueue.
|
||||
* @type int $f_port
|
||||
* FPort (must be > 0).
|
||||
* @type string $data
|
||||
* Payload.
|
||||
* }
|
||||
*/
|
||||
public function __construct($data = NULL) {
|
||||
\GPBMetadata\Chirpstack\Api\MulticastGroup::initOnce();
|
||||
parent::__construct($data);
|
||||
}
|
||||
|
||||
/**
|
||||
* Multicast group ID.
|
||||
*
|
||||
* Generated from protobuf field <code>string multicast_group_id = 1;</code>
|
||||
* @return string
|
||||
*/
|
||||
public function getMulticastGroupId()
|
||||
{
|
||||
return $this->multicast_group_id;
|
||||
}
|
||||
|
||||
/**
|
||||
* Multicast group ID.
|
||||
*
|
||||
* Generated from protobuf field <code>string multicast_group_id = 1;</code>
|
||||
* @param string $var
|
||||
* @return $this
|
||||
*/
|
||||
public function setMulticastGroupId($var)
|
||||
{
|
||||
GPBUtil::checkString($var, True);
|
||||
$this->multicast_group_id = $var;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Downlink frame-counter.
|
||||
* This will be automatically set on enqueue.
|
||||
*
|
||||
* Generated from protobuf field <code>uint32 f_cnt = 2;</code>
|
||||
* @return int
|
||||
*/
|
||||
public function getFCnt()
|
||||
{
|
||||
return $this->f_cnt;
|
||||
}
|
||||
|
||||
/**
|
||||
* Downlink frame-counter.
|
||||
* This will be automatically set on enqueue.
|
||||
*
|
||||
* Generated from protobuf field <code>uint32 f_cnt = 2;</code>
|
||||
* @param int $var
|
||||
* @return $this
|
||||
*/
|
||||
public function setFCnt($var)
|
||||
{
|
||||
GPBUtil::checkUint32($var);
|
||||
$this->f_cnt = $var;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* FPort (must be > 0).
|
||||
*
|
||||
* Generated from protobuf field <code>uint32 f_port = 3;</code>
|
||||
* @return int
|
||||
*/
|
||||
public function getFPort()
|
||||
{
|
||||
return $this->f_port;
|
||||
}
|
||||
|
||||
/**
|
||||
* FPort (must be > 0).
|
||||
*
|
||||
* Generated from protobuf field <code>uint32 f_port = 3;</code>
|
||||
* @param int $var
|
||||
* @return $this
|
||||
*/
|
||||
public function setFPort($var)
|
||||
{
|
||||
GPBUtil::checkUint32($var);
|
||||
$this->f_port = $var;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Payload.
|
||||
*
|
||||
* Generated from protobuf field <code>bytes data = 4;</code>
|
||||
* @return string
|
||||
*/
|
||||
public function getData()
|
||||
{
|
||||
return $this->data;
|
||||
}
|
||||
|
||||
/**
|
||||
* Payload.
|
||||
*
|
||||
* Generated from protobuf field <code>bytes data = 4;</code>
|
||||
* @param string $var
|
||||
* @return $this
|
||||
*/
|
||||
public function setData($var)
|
||||
{
|
||||
GPBUtil::checkString($var, False);
|
||||
$this->data = $var;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
}
|
||||
|
Reference in New Issue
Block a user