/****************************************************************************** * THIS FILE IS GENERATED - ANY EDITS WILL BE OVERWRITTEN */ #pragma once #include "converters.h" #include "csapi/definitions/push_condition.h" #include #include #include namespace Quotient { // Data structures struct PushRule { /// The actions to perform when this rule is matched. QVector actions; /// Whether this is a default rule, or has been set explicitly. bool isDefault; /// Whether the push rule is enabled or not. bool enabled; /// The ID of this rule. QString ruleId; /// The conditions that must hold true for an event in order for a rule to /// beapplied to an event. A rule with no conditions always matches. /// Onlyapplicable to ``underride`` and ``override`` rules. QVector conditions; /// The glob-style pattern to match against. Only applicable to /// ``content``rules. QString pattern; }; template <> struct JsonObjectConverter { static void dumpTo(QJsonObject& jo, const PushRule& pod); static void fillFrom(const QJsonObject& jo, PushRule& pod); }; } // namespace Quotient