libkazv
Loading...
Searching...
No Matches
receipts.hpp
Go to the documentation of this file.
1/******************************************************************************
2 * THIS FILE IS GENERATED - ANY EDITS WILL BE OVERWRITTEN
3 */
4
5#pragma once
6
7#include "basejob.hpp"
8
9
10namespace Kazv::Api {
11
17class PostReceiptJob : public BaseJob {
18public:
19
20
21
22class JobResponse : public Response
23{
24
25public:
27 bool success() const;
28
29};
30 static constexpr auto needsAuth() {
31 return true
32 ;
33 }
34
35
36// Construction/destruction
37
53 explicit PostReceiptJob(std::string serverUrl
54 , std::string _accessToken
55 ,
56 std::string roomId , std::string receiptType , std::string eventId , JsonWrap receipt = {}
57 );
58
59
61 );
62
63 static BaseJob::Body buildBody(std::string roomId, std::string receiptType, std::string eventId, JsonWrap receipt);
64
65
66
67
68
71 };
73 }
74 namespace nlohmann
75 {
76 using namespace Kazv;
77 using namespace Kazv::Api;
78
79 }
80
81 namespace Kazv::Api
82 {
83
84} // namespace Kazv::Api
Definition receipts.hpp:23
bool success() const
Definition receipts.cpp:71
Send a receipt for the given event ID.
Definition receipts.hpp:17
PostReceiptJob withData(JsonWrap j) &&
Definition receipts.cpp:54
static BaseJob::Query buildQuery()
Definition receipts.cpp:13
static BaseJob::Body buildBody(std::string roomId, std::string receiptType, std::string eventId, JsonWrap receipt)
Definition receipts.cpp:21
static constexpr auto needsAuth()
Definition receipts.hpp:30
Definition basejob.hpp:94
Definition basejob.hpp:68
::Kazv::Body Body
Definition basejob.hpp:103
Definition jsonwrap.hpp:23
Definition location.hpp:10
Definition location.hpp:10
Definition location.hpp:27
Definition basejob.hpp:49