Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F139942
notifications.cpp
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Award Token
Flag For Later
Size
2 KB
Referenced Files
None
Subscribers
None
notifications.cpp
View Options
/******************************************************************************
* THIS FILE IS GENERATED - ANY EDITS WILL BE OVERWRITTEN
*/
#include
<algorithm>
#include
"notifications.hpp"
namespace
Kazv
::
Api
{
BaseJob
::
Query
GetNotificationsJob::buildQuery
(
std
::
optional
<
std
::
string
>
from
,
std
::
optional
<
int
>
limit
,
std
::
optional
<
std
::
string
>
only
)
{
BaseJob
::
Query
_q
;
addToQueryIfNeeded
(
_q
,
"from"
s
,
from
);
addToQueryIfNeeded
(
_q
,
"limit"
s
,
limit
);
addToQueryIfNeeded
(
_q
,
"only"
s
,
only
);
return
_q
;
}
BaseJob
::
Body
GetNotificationsJob::buildBody
(
std
::
optional
<
std
::
string
>
from
,
std
::
optional
<
int
>
limit
,
std
::
optional
<
std
::
string
>
only
)
{
// ignore unused param
(
void
)(
from
);(
void
)(
limit
);(
void
)(
only
);
return
BaseJob
::
EmptyBody
{};
};
GetNotificationsJob
::
GetNotificationsJob
(
std
::
string
serverUrl
,
std
::
string
_accessToken
,
std
::
optional
<
std
::
string
>
from
,
std
::
optional
<
int
>
limit
,
std
::
optional
<
std
::
string
>
only
)
:
BaseJob
(
std
::
move
(
serverUrl
),
std
::
string
(
"/_matrix/client/v3"
)
+
"/notifications"
,
GET
,
std
::
string
(
"GetNotifications"
),
_accessToken
,
ReturnType
::
Json
,
buildBody
(
from
,
limit
,
only
)
,
buildQuery
(
from
,
limit
,
only
)
,
{}
)
{
}
GetNotificationsJob
GetNotificationsJob
::
withData
(
JsonWrap
j
)
&&
{
auto
ret
=
GetNotificationsJob
(
std
::
move
(
*
this
));
ret
.
attachData
(
j
);
return
ret
;
}
GetNotificationsJob
GetNotificationsJob
::
withData
(
JsonWrap
j
)
const
&
{
auto
ret
=
GetNotificationsJob
(
*
this
);
ret
.
attachData
(
j
);
return
ret
;
}
GetNotificationsJob
::
JobResponse
::
JobResponse
(
Response
r
)
:
Response
(
std
::
move
(
r
))
{}
bool
GetNotificationsResponse
::
success
()
const
{
return
Response
::
success
()
&&
isBodyJson
(
body
)
&&
jsonBody
().
get
().
contains
(
"notifications"
s
)
;
}
std
::
optional
<
std
::
string
>
GetNotificationsResponse
::
nextToken
()
const
{
if
(
jsonBody
().
get
()
.
contains
(
"next_token"
s
))
{
return
jsonBody
().
get
()[
"next_token"
s
]
.
template
get
<
std
::
string
>
();}
else
{
return
std
::
optional
<
std
::
string
>
(
);}
}
immer
::
array
<
GetNotificationsJob
::
Notification
>
GetNotificationsResponse
::
notifications
()
const
{
if
(
jsonBody
().
get
()
.
contains
(
"notifications"
s
))
{
return
jsonBody
().
get
()[
"notifications"
s
]
.
template
get
<
immer
::
array
<
Notification
>>
();}
else
{
return
immer
::
array
<
Notification
>
(
);}
}
}
File Metadata
Details
Attached
Mime Type
text/x-c
Expires
Sun, Jan 19, 8:32 AM (1 h, 4 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
55030
Default Alt Text
notifications.cpp (2 KB)
Attached To
Mode
rL libkazv
Attached
Detach File
Event Timeline
Log In to Comment