api.ListMulticastGroupQueueRequest */ class ListMulticastGroupQueueRequest extends \Google\Protobuf\Internal\Message { /** * Multicast group ID. * * Generated from protobuf field string multicast_group_id = 1; */ protected $multicast_group_id = ''; /** * Constructor. * * @param array $data { * Optional. Data for populating the Message object. * * @type string $multicast_group_id * Multicast group ID. * } */ public function __construct($data = NULL) { \GPBMetadata\Chirpstack\Api\MulticastGroup::initOnce(); parent::__construct($data); } /** * Multicast group ID. * * Generated from protobuf field string multicast_group_id = 1; * @return string */ public function getMulticastGroupId() { return $this->multicast_group_id; } /** * Multicast group ID. * * Generated from protobuf field string multicast_group_id = 1; * @param string $var * @return $this */ public function setMulticastGroupId($var) { GPBUtil::checkString($var, True); $this->multicast_group_id = $var; return $this; } }