/****************************************************************************** * THIS FILE IS GENERATED - ANY EDITS WILL BE OVERWRITTEN */ #pragma once #include "converters.h" #include #include #include "converters.h" namespace QMatrixClient { // Data structures /// Definition of valid values for a field. struct FieldType { /// A regular expression for validation of a field's value. QString regexp; /// An placeholder serving as a valid example of the field value. QString placeholder; }; QJsonObject toJson(const FieldType& pod); template <> struct FromJsonObject { FieldType operator()(const QJsonObject& jo) const; }; /// All location or user fields should have an entry here. struct FieldTypes { /// Definition of valid values for a field. Omittable fieldname; }; QJsonObject toJson(const FieldTypes& pod); template <> struct FromJsonObject { FieldTypes operator()(const QJsonObject& jo) const; }; struct ThirdPartyProtocol { /// Fields used to identify a third party user. QStringList userFields; /// Fields used to identify a third party location. QStringList locationFields; /// An icon representing the third party protocol. QString icon; /// All location or user fields should have an entry here. Omittable fieldTypes; /// A list of objects representing independent instances of configuration. /// For instance multiple networks on IRC if multiple are bridged by the /// same bridge. QVector instances; }; QJsonObject toJson(const ThirdPartyProtocol& pod); template <> struct FromJsonObject { ThirdPartyProtocol operator()(const QJsonObject& jo) const; }; } // namespace QMatrixClient