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 b7e2110 commit 25e3611Copy full SHA for 25e3611
client/src/commonMain/kotlin/com/algolia/client/model/ingestion/Event.kt
@@ -13,7 +13,6 @@ import kotlinx.serialization.json.*
13
* @param type
14
* @param batchSize The extracted record batch size.
15
* @param publishedAt Date of publish RFC 3339 format.
16
- * @param parentID The parent event, the cause of this event.
17
* @param `data`
18
*/
19
@Serializable
@@ -35,8 +34,5 @@ public data class Event(
35
34
/** Date of publish RFC 3339 format. */
36
@SerialName(value = "publishedAt") val publishedAt: String,
37
38
- /** The parent event, the cause of this event. */
39
- @SerialName(value = "parentID") val parentID: String? = null,
40
-
41
@SerialName(value = "data") val `data`: JsonObject? = null,
42
)
0 commit comments