EmailNotificationDetails.h
Go to the documentation of this file.
1 // Copyright (c) 2017 Digital Barriers
4 
17 #pragma once
18 #include "EdgeVisSDK.h"
19 #include "Pimpl.h"
20 
21 namespace EdgeVisDecoderSDK
22 {
23  class EmailNotificationDetailsImpl;
24 
25  class EmailNotificationDetails : public EdgeVisSDKPimpl<EmailNotificationDetailsImpl>
26  {
27  public:
28  DB_EDGEVIS_SDK EmailNotificationDetails();
29  DB_EDGEVIS_SDK EmailNotificationDetails(std::wstring emailAddress, bool enable);
30  EdgeVisSDKPimplWeakConstructor(EmailNotificationDetails);
31 
37  DB_EDGEVIS_SDK std::wstring GetEmailAddress();
38 
44  DB_EDGEVIS_SDK bool IsEnabledForAlarms();
45 
52  DB_EDGEVIS_SDK bool SetEmailAddress(std::wstring emailAddress);
53 
59  DB_EDGEVIS_SDK void SetEnabledForAlarms(bool enable);
60 
61  DB_EDGEVIS_SDK virtual ~EmailNotificationDetails();
62  };
63 }
DB_EDGEVIS_SDK bool IsEnabledForAlarms()
Get the is enabled flag for the users email address.
User settings can be configure on the server for notifications.
Definition: EmailNotificationDetails.h:25
DB_EDGEVIS_SDK bool SetEmailAddress(std::wstring emailAddress)
Sets the email address for the user.
DB_EDGEVIS_SDK std::wstring GetEmailAddress()
Get the email address for the current user.
DB_EDGEVIS_SDK void SetEnabledForAlarms(bool enable)
Enables the email address for the user.
The EdgeVis Decoder SDK namespace.