5 #include <Quotient/converters.h>
15 struct JsonObjectConverter<IdentityServerInformation> {
16 static void dumpTo(QJsonObject& jo,
const IdentityServerInformation& pod)
18 addParam<>(jo,
"base_url"_L1, pod.baseUrl);
20 static void fillFrom(
const QJsonObject& jo, IdentityServerInformation& pod)
22 fillFromJson(jo.value(
"base_url"_L1), pod.baseUrl);