File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
client/src/commonMain/kotlin/com/algolia/client/model Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -7,14 +7,14 @@ import kotlinx.serialization.json.*
77/* *
88 * ListABTestsResponse
99 *
10- * @param abtests A/B tests.
10+ * @param abtests The list of A/B tests, null if no A/B tests are configured for this application .
1111 * @param count Number of A/B tests.
1212 * @param total Number of retrievable A/B tests.
1313 */
1414@Serializable
1515public data class ListABTestsResponse (
1616
17- /* * A/B tests. */
17+ /* * The list of A/B tests, null if no A/B tests are configured for this application . */
1818 @SerialName(value = " abtests" ) val abtests : List <ABTest >,
1919
2020 /* * Number of A/B tests. */
Original file line number Diff line number Diff line change @@ -12,6 +12,6 @@ import kotlinx.serialization.json.*
1212@Serializable
1313public data class GetStatusResponse (
1414
15- /* * Date and time when the object was updated, in RFC 3339 format. */
15+ /* * Date and time when the object was updated, in RFC 3339 format. */
1616 @SerialName(value = " updatedAt" ) val updatedAt : String ,
1717)
You can’t perform that action at this time.
0 commit comments