File tree 2 files changed +3
-3
lines changed
client/src/commonMain/kotlin/com/algolia/client/model
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.*
7
7
/* *
8
8
* ListABTestsResponse
9
9
*
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 .
11
11
* @param count Number of A/B tests.
12
12
* @param total Number of retrievable A/B tests.
13
13
*/
14
14
@Serializable
15
15
public data class ListABTestsResponse (
16
16
17
- /* * A/B tests. */
17
+ /* * The list of A/B tests, null if no A/B tests are configured for this application . */
18
18
@SerialName(value = " abtests" ) val abtests : List <ABTest >,
19
19
20
20
/* * Number of A/B tests. */
Original file line number Diff line number Diff line change @@ -12,6 +12,6 @@ import kotlinx.serialization.json.*
12
12
@Serializable
13
13
public data class GetStatusResponse (
14
14
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. */
16
16
@SerialName(value = " updatedAt" ) val updatedAt : String ,
17
17
)
You can’t perform that action at this time.
0 commit comments