File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
client/src/commonMain/kotlin/com/algolia/client/model/search Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -8,17 +8,17 @@ import kotlinx.serialization.json.*
8
8
* MultipleBatchRequest
9
9
*
10
10
* @param action
11
- * @param body Operation arguments (varies with specified `action`).
12
11
* @param indexName Index name (case-sensitive).
12
+ * @param body Operation arguments (varies with specified `action`).
13
13
*/
14
14
@Serializable
15
15
public data class MultipleBatchRequest (
16
16
17
17
@SerialName(value = " action" ) val action : Action ,
18
18
19
- /* * Operation arguments (varies with specified `action`). */
20
- @SerialName(value = " body" ) val body : JsonObject ,
21
-
22
19
/* * Index name (case-sensitive). */
23
20
@SerialName(value = " indexName" ) val indexName : String ,
21
+
22
+ /* * Operation arguments (varies with specified `action`). */
23
+ @SerialName(value = " body" ) val body : JsonObject ? = null ,
24
24
)
You can’t perform that action at this time.
0 commit comments