diff options
author | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2018-09-29 22:22:49 +0900 |
---|---|---|
committer | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2018-09-29 22:22:49 +0900 |
commit | b55334ac0fe89f780776bc4eab90ffe1ca3c57bb (patch) | |
tree | 1a45c0ccfec8f5f7ba37eb4385cdc7f61afa0c97 /lib/csapi/notifications.h | |
parent | f5c2e47fa1ab84fdaffe03c30ba973d7dea5ac05 (diff) | |
parent | 1e6510790dab6b9141ae52993987b406399668cd (diff) | |
download | libquotient-b55334ac0fe89f780776bc4eab90ffe1ca3c57bb.tar.gz libquotient-b55334ac0fe89f780776bc4eab90ffe1ca3c57bb.zip |
Merge branch 'cs-api-0.4.0'
Diffstat (limited to 'lib/csapi/notifications.h')
-rw-r--r-- | lib/csapi/notifications.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/csapi/notifications.h b/lib/csapi/notifications.h index 4edb9c3e..898b5154 100644 --- a/lib/csapi/notifications.h +++ b/lib/csapi/notifications.h @@ -17,7 +17,7 @@ namespace QMatrixClient // Operations /// Gets a list of events that the user has been notified about - /// + /// /// This API is used to paginate through the list of events that the /// user has been, or would have been notified about. class GetNotificationsJob : public BaseJob @@ -43,17 +43,17 @@ namespace QMatrixClient QString roomId; /// The unix timestamp at which the event notification was sent, /// in milliseconds. - qint64 ts; + int ts; }; // Construction/destruction /*! Gets a list of events that the user has been notified about - * \param from + * \param from * Pagination token given to retrieve the next set of events. - * \param limit + * \param limit * Limit on the number of events to return in this request. - * \param only + * \param only * Allows basic filtering of events returned. Supply ``highlight`` * to return only events where the notification had the highlight * tweak set. |