BeeeOn Gateway  v2020.3.1-2-g6f737dc
Platform to interconnect the IoT world
GWUnpairResponse.h
1 #pragma once
2 
3 #include <set>
4 
5 #include "gwmessage/GWResponse.h"
6 #include "model/DeviceID.h"
7 
8 namespace BeeeOn {
9 
28 class GWUnpairResponse : public GWResponse {
29 public:
31  GWUnpairResponse(const Poco::JSON::Object::Ptr object);
32 
33  void setUnpairedDevices(const std::set<DeviceID> &devices);
34  std::set<DeviceID> unpairedDevices() const;
35 };
36 
37 }
The unpair process might under certain circumstances unpair a different device then intended...
Definition: GWUnpairResponse.h:28
Represents a response to a request message (subclass of a GWRequest). The GWResponse can be used alon...
Definition: GWResponse.h:55