kalshi-cpp 0.6.2
C++23 client for Kalshi's Predictions API
Loading...
Searching...
No Matches
raw_json.hpp
Go to the documentation of this file.
1#pragma once
2
3#include <string>
4
5namespace kalshi {
6
9struct RawJson {
10 std::string text;
11
12 friend bool operator==(const RawJson&, const RawJson&) = default;
13};
14
15} // namespace kalshi
Definition api.hpp:15
A JSON value kept as text, for free-form fields such as product metadata.
Definition raw_json.hpp:9
friend bool operator==(const RawJson &, const RawJson &)=default
std::string text
Definition raw_json.hpp:10