Skip to content

Commit 796cfac

Browse files
algolia-botmillotp
andcommittedJan 27, 2025·
fix(specs): add a linter to assert that type is present (generated)
algolia/api-clients-automation#4393 Co-authored-by: algolia-bot <[email protected]> Co-authored-by: Pierre Millot <[email protected]>
1 parent c12f5b0 commit 796cfac

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed
 

‎client/src/commonMain/kotlin/com/algolia/client/model/abtesting/ListABTestsResponse.kt

+2-2
Original file line numberDiff line numberDiff 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
1515
public 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. */

‎client/src/commonMain/kotlin/com/algolia/client/model/analytics/GetStatusResponse.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@ import kotlinx.serialization.json.*
1212
@Serializable
1313
public 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
)

0 commit comments

Comments
 (0)
Please sign in to comment.