aboutsummaryrefslogtreecommitdiff
path: root/lib/identity/definitions/request_msisdn_validation.cpp
blob: 6024bf61e2c9e20120552b2152ececa3209db80d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/******************************************************************************
 * THIS FILE IS GENERATED - ANY EDITS WILL BE OVERWRITTEN
 */

#include "request_msisdn_validation.h"

using namespace Quotient;

void JsonObjectConverter<RequestMsisdnValidation>::dumpTo(
    QJsonObject& jo, const RequestMsisdnValidation& pod)
{
    addParam<>(jo, QStringLiteral("client_secret"), pod.clientSecret);
    addParam<>(jo, QStringLiteral("country"), pod.country);
    addParam<>(jo, QStringLiteral("phone_number"), pod.phoneNumber);
    addParam<>(jo, QStringLiteral("send_attempt"), pod.sendAttempt);
    addParam<IfNotEmpty>(jo, QStringLiteral("next_link"), pod.nextLink);
}

void JsonObjectConverter<RequestMsisdnValidation>::fillFrom(
    const QJsonObject& jo, RequestMsisdnValidation& result)
{
    fromJson(jo.value("client_secret"_ls), result.clientSecret);
    fromJson(jo.value("country"_ls), result.country);
    fromJson(jo.value("phone_number"_ls), result.phoneNumber);
    fromJson(jo.value("send_attempt"_ls), result.sendAttempt);
    fromJson(jo.value("next_link"_ls), result.nextLink);
}