api.EnqueueMulticastGroupQueueItemResponse */ class EnqueueMulticastGroupQueueItemResponse extends \Google\Protobuf\Internal\Message { /** * Frame-counter of the enqueued payload. * * Generated from protobuf field uint32 f_cnt = 1; */ protected $f_cnt = 0; /** * Constructor. * * @param array $data { * Optional. Data for populating the Message object. * * @type int $f_cnt * Frame-counter of the enqueued payload. * } */ public function __construct($data = NULL) { \GPBMetadata\Chirpstack\Api\MulticastGroup::initOnce(); parent::__construct($data); } /** * Frame-counter of the enqueued payload. * * Generated from protobuf field uint32 f_cnt = 1; * @return int */ public function getFCnt() { return $this->f_cnt; } /** * Frame-counter of the enqueued payload. * * Generated from protobuf field uint32 f_cnt = 1; * @param int $var * @return $this */ public function setFCnt($var) { GPBUtil::checkUint32($var); $this->f_cnt = $var; return $this; } }