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 8f28b9b commit bb51b5aCopy full SHA for bb51b5a
client/src/commonMain/kotlin/com/algolia/client/model/ingestion/RunProgress.kt
@@ -13,7 +13,7 @@ import kotlinx.serialization.json.*
13
@Serializable
14
public data class RunProgress(
15
16
- @SerialName(value = "expectedNbOfEvents") val expectedNbOfEvents: Int? = null,
+ @SerialName(value = "expectedNbOfEvents") val expectedNbOfEvents: Int,
17
18
- @SerialName(value = "receivedNbOfEvents") val receivedNbOfEvents: Int? = null,
+ @SerialName(value = "receivedNbOfEvents") val receivedNbOfEvents: Int,
19
)
0 commit comments