aboutsummaryrefslogtreecommitdiff
path: root/lib/identity/definitions/sid.h
blob: 0f7ce58ae194fa8c85fe4769b2b5551c8a92f5b1 (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
28
29
30
/******************************************************************************
 * THIS FILE IS GENERATED - ANY EDITS WILL BE OVERWRITTEN
 */

#pragma once

#include "converters.h"

namespace Quotient
{

// Data structures

struct Sid
{
    /// The session ID. Session IDs are opaque strings generated by the
    /// identityserver. They must consist entirely of the
    /// characters``[0-9a-zA-Z.=_-]``. Their length must not exceed 255
    /// characters and theymust not be empty.
    QString sid;
};

template <>
struct JsonObjectConverter<Sid>
{
    static void dumpTo(QJsonObject& jo, const Sid& pod);
    static void fillFrom(const QJsonObject& jo, Sid& pod);
};

} // namespace Quotient