KUnifiedPush

message.h
1 /*
2  SPDX-FileCopyrightText: 2022 Volker Krause <[email protected]>
3  SPDX-License-Identifier: LGPL-2.0-or-later
4 */
5 
6 #ifndef KUNIFIEDPUSH_MESSAGE_H
7 #define KUNIFIEDPUSH_MESSAGE_H
8 
9 #include <QString>
10 
11 namespace KUnifiedPush {
12 
13 /** A received push notification message. */
14 class Message
15 {
16 public:
17  QString clientRemoteId;
18  QByteArray content;
19 };
20 
21 }
22 
23 #endif // KUNIFIEDPUSH_MESSAGE_H
Client-side integration with UnifiedPush.
Definition: connector.h:16
A received push notification message.
Definition: message.h:14
This file is part of the KDE documentation.
Documentation copyright © 1996-2023 The KDE developers.
Generated on Mon May 8 2023 03:50:50 by doxygen 1.8.17 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.