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.
1 parent d0d8d80 commit 36dafc9Copy full SHA for 36dafc9
algoliasearch/Models/Ingestion/TransformationSearch.cs
@@ -19,8 +19,15 @@ public partial class TransformationSearch
19
/// <summary>
20
/// Initializes a new instance of the TransformationSearch class.
21
/// </summary>
22
- public TransformationSearch()
+ [JsonConstructor]
23
+ public TransformationSearch() { }
24
+ /// <summary>
25
+ /// Initializes a new instance of the TransformationSearch class.
26
+ /// </summary>
27
+ /// <param name="transformationIDs">transformationIDs (required).</param>
28
+ public TransformationSearch(List<string> transformationIDs)
29
{
30
+ TransformationIDs = transformationIDs ?? throw new ArgumentNullException(nameof(transformationIDs));
31
}
32
33
0 commit comments