aboutsummaryrefslogtreecommitdiff
path: root/lib/identity/definitions/request_msisdn_validation.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/identity/definitions/request_msisdn_validation.h')
-rw-r--r--lib/identity/definitions/request_msisdn_validation.h16
1 files changed, 7 insertions, 9 deletions
diff --git a/lib/identity/definitions/request_msisdn_validation.h b/lib/identity/definitions/request_msisdn_validation.h
index b48ed6d5..c4fe479e 100644
--- a/lib/identity/definitions/request_msisdn_validation.h
+++ b/lib/identity/definitions/request_msisdn_validation.h
@@ -8,16 +8,14 @@
#include "converters.h"
-namespace QMatrixClient
-{
+namespace QMatrixClient {
// Data structures
- struct RequestMsisdnValidation
- {
+ struct RequestMsisdnValidation {
/// A unique string generated by the client, and used to identify the
/// validation attempt. It must be a string consisting of the characters
- /// ``[0-9a-zA-Z.=_-]``. Its length must not exceed 255 characters and it
- /// must not be empty.
+ /// ``[0-9a-zA-Z.=_-]``. Its length must not exceed 255 characters and
+ /// it must not be empty.
QString clientSecret;
/// The two-letter uppercase ISO country code that the number in
/// ``phone_number`` should be parsed as if it were dialled from.
@@ -36,10 +34,10 @@ namespace QMatrixClient
/// server will redirect the user to this URL.
QString nextLink;
};
- template <> struct JsonObjectConverter<RequestMsisdnValidation>
- {
+ template <> struct JsonObjectConverter<RequestMsisdnValidation> {
static void dumpTo(QJsonObject& jo, const RequestMsisdnValidation& pod);
- static void fillFrom(const QJsonObject& jo, RequestMsisdnValidation& pod);
+ static void fillFrom(const QJsonObject& jo,
+ RequestMsisdnValidation& pod);
};
} // namespace QMatrixClient