File tree Expand file tree Collapse file tree 1 file changed +1
-3
lines changed
algoliasearch/Models/Search Expand file tree Collapse file tree 1 file changed +1
-3
lines changed Original file line number Diff line number Diff line change @@ -31,12 +31,10 @@ public MultipleBatchRequest() { }
31
31
/// Initializes a new instance of the MultipleBatchRequest class.
32
32
/// </summary>
33
33
/// <param name="action">action (required).</param>
34
- /// <param name="body">Operation arguments (varies with specified `action`). (required).</param>
35
34
/// <param name="indexName">Index name (case-sensitive). (required).</param>
36
- public MultipleBatchRequest ( Action ? action , object body , string indexName )
35
+ public MultipleBatchRequest ( Action ? action , string indexName )
37
36
{
38
37
Action = action ;
39
- Body = body ?? throw new ArgumentNullException ( nameof ( body ) ) ;
40
38
IndexName = indexName ?? throw new ArgumentNullException ( nameof ( indexName ) ) ;
41
39
}
42
40
You can’t perform that action at this time.
0 commit comments