We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
consequence
1 parent 0100fb2 commit 474482eCopy full SHA for 474482e
algoliasearch/Models/Search/Rule.cs
@@ -25,9 +25,11 @@ public Rule() { }
25
/// Initializes a new instance of the Rule class.
26
/// </summary>
27
/// <param name="objectID">Unique identifier of a rule object. (required).</param>
28
- public Rule(string objectID)
+ /// <param name="consequence">consequence (required).</param>
29
+ public Rule(string objectID, Consequence consequence)
30
{
31
ObjectID = objectID ?? throw new ArgumentNullException(nameof(objectID));
32
+ Consequence = consequence ?? throw new ArgumentNullException(nameof(consequence));
33
}
34
35
/// <summary>
0 commit comments