PushNotificationDetails.h
Go to the documentation of this file.
1 // Copyright (c) 2017 Digital Barriers
4 
16 #pragma once
17 #include "EdgeVisSDK.h"
18 #include "Pimpl.h"
19 
20 namespace EdgeVisDecoderSDK
21 {
22  class PushNotificationDetailsImpl;
23 
24  class PushNotificationDetails : public EdgeVisSDKPimpl<PushNotificationDetailsImpl>
25  {
26  public:
27  DB_EDGEVIS_SDK PushNotificationDetails();
28  EdgeVisSDKPimplWeakConstructor(PushNotificationDetails);
29 
35  DB_EDGEVIS_SDK std::wstring GetNickname();
36 
42  DB_EDGEVIS_SDK bool IsEnabledForAlarms();
43 
49  DB_EDGEVIS_SDK int64_t GetRegisteredTimestamp();
50 
56  DB_EDGEVIS_SDK std::wstring GetDeviceUUID();
57 
63  DB_EDGEVIS_SDK void SetNickname(std::wstring nickname);
64 
70  DB_EDGEVIS_SDK void SetEnabledForAlarms(bool enable);
71 
72  DB_EDGEVIS_SDK virtual ~PushNotificationDetails();
73  };
74 }
DB_EDGEVIS_SDK void SetNickname(std::wstring nickname)
Set the nickname for this device.
DB_EDGEVIS_SDK void SetEnabledForAlarms(bool enable)
Set this device enabled for notifications.
DB_EDGEVIS_SDK int64_t GetRegisteredTimestamp()
Get the timestamp for when this device was first registered.
DB_EDGEVIS_SDK bool IsEnabledForAlarms()
Is this device enabled for notifications.
User settings can be configure on the server for notifications.
Definition: PushNotificationDetails.h:24
The EdgeVis Decoder SDK namespace.
DB_EDGEVIS_SDK std::wstring GetDeviceUUID()
Get the UUID for this device.
DB_EDGEVIS_SDK std::wstring GetNickname()
Get the nickname for this device.