Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F112045
notifications.hpp
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Award Token
Flag For Later
Size
4 KB
Referenced Files
None
Subscribers
None
notifications.hpp
View Options
/******************************************************************************
* THIS FILE IS GENERATED - ANY EDITS WILL BE OVERWRITTEN
*/
#pragma once
#include
"basejob.hpp"
#include csapi/definitions/client_event_without_room_id
namespace
Kazv
::
Api
{
/*! \brief 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
{
public
:
// Inner data structures
/// This API is used to paginate through the list of events that the
/// user has been, or would have been notified about.
struct
Notification
{
/// The action(s) to perform when the conditions for this rule are met.
/// See [Push Rules: API](/client-server-api/#push-rules-api).
immer
::
array
<
Variant
>
actions
;
/// The Event object for the event that triggered the notification.
ClientEventWithoutRoomID
event
;
/// Indicates whether the user has sent a read receipt indicating
/// that they have read this message.
bool
read
;
/// The ID of the room in which the event was posted.
std
::
string
roomId
;
/// The unix timestamp at which the event notification was sent,
/// in milliseconds.
std
::
int_fast64_t
ts
;
/// The profile tag of the rule that matched this event.
std
::
optional
<
std
::
string
>
profileTag
;
};
class
JobResponse
:
public
Response
{
public
:
JobResponse
(
Response
r
);
bool
success
()
const
;
// Result properties
/// The token to supply in the `from` param of the next
/// `/notifications` request in order to request more
/// events. If this is absent, there are no more results.
std
::
optional
<
std
::
string
>
nextToken
()
const
;
/// The list of events that triggered notifications.
immer
::
array
<
Notification
>
notifications
()
const
;
};
static
constexpr
auto
needsAuth
()
{
return
true
;
}
// Construction/destruction
/*! \brief Gets a list of events that the user has been notified about
*
* \param from
* Pagination token to continue from. This should be the `next_token`
* returned from an earlier call to this endpoint.
*
* \param limit
* Limit on the number of events to return in this request.
*
* \param only
* Allows basic filtering of events returned. Supply `highlight`
* to return only events where the notification had the highlight
* tweak set.
*/
explicit
GetNotificationsJob
(
std
::
string
serverUrl
,
std
::
string
_accessToken
,
std
::
optional
<
std
::
string
>
from
=
std
::
nullopt
,
std
::
optional
<
int
>
limit
=
std
::
nullopt
,
std
::
optional
<
std
::
string
>
only
=
std
::
nullopt
);
static
BaseJob
::
Query
buildQuery
(
std
::
optional
<
std
::
string
>
from
,
std
::
optional
<
int
>
limit
,
std
::
optional
<
std
::
string
>
only
);
static
BaseJob
::
Body
buildBody
(
std
::
optional
<
std
::
string
>
from
,
std
::
optional
<
int
>
limit
,
std
::
optional
<
std
::
string
>
only
);
GetNotificationsJob
withData
(
JsonWrap
j
)
&&
;
GetNotificationsJob
withData
(
JsonWrap
j
)
const
&
;
};
using
GetNotificationsResponse
=
GetNotificationsJob
::
JobResponse
;
}
namespace
nlohmann
{
using
namespace
Kazv
;
using
namespace
Kazv
::
Api
;
template
<>
struct
adl_serializer
<
GetNotificationsJob
::
Notification
>
{
static
void
to_json
(
json
&
jo
,
const
GetNotificationsJob
::
Notification
&
pod
)
{
if
(
!
jo
.
is_object
())
{
jo
=
json
::
object
();
}
jo
[
"actions"
s
]
=
pod
.
actions
;
jo
[
"event"
s
]
=
pod
.
event
;
jo
[
"read"
s
]
=
pod
.
read
;
jo
[
"room_id"
s
]
=
pod
.
roomId
;
jo
[
"ts"
s
]
=
pod
.
ts
;
addToJsonIfNeeded
(
jo
,
"profile_tag"
s
,
pod
.
profileTag
);
}
static
void
from_json
(
const
json
&
jo
,
GetNotificationsJob
::
Notification
&
result
)
{
if
(
jo
.
contains
(
"actions"
s
))
{
result
.
actions
=
jo
.
at
(
"actions"
s
);
}
if
(
jo
.
contains
(
"event"
s
))
{
result
.
event
=
jo
.
at
(
"event"
s
);
}
if
(
jo
.
contains
(
"read"
s
))
{
result
.
read
=
jo
.
at
(
"read"
s
);
}
if
(
jo
.
contains
(
"room_id"
s
))
{
result
.
roomId
=
jo
.
at
(
"room_id"
s
);
}
if
(
jo
.
contains
(
"ts"
s
))
{
result
.
ts
=
jo
.
at
(
"ts"
s
);
}
if
(
jo
.
contains
(
"profile_tag"
s
))
{
result
.
profileTag
=
jo
.
at
(
"profile_tag"
s
);
}
}
};
}
namespace
Kazv
::
Api
{
}
// namespace Kazv::Api
File Metadata
Details
Attached
Mime Type
text/x-c++
Expires
Fri, Nov 22, 10:15 PM (1 d, 17 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
38755
Default Alt Text
notifications.hpp (4 KB)
Attached To
Mode
rL libkazv
Attached
Detach File
Event Timeline
Log In to Comment