Skip to content

Commit e142be4

Browse files
algolia-botmillotp
andcommitted
fix(specs): add a linter to assert that type is present (#4393) (generated) [skip ci]
Co-authored-by: Pierre Millot <[email protected]>
1 parent 09e657f commit e142be4

File tree

54 files changed

+131
-133
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

54 files changed

+131
-133
lines changed

clients/algoliasearch-client-csharp/algoliasearch/Models/Abtesting/ListABTestsResponse.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ public ListABTestsResponse() { }
2424
/// <summary>
2525
/// Initializes a new instance of the ListABTestsResponse class.
2626
/// </summary>
27-
/// <param name="abtests">A/B tests. (required).</param>
27+
/// <param name="abtests">The list of A/B tests, null if no A/B tests are configured for this application. (required).</param>
2828
/// <param name="count">Number of A/B tests. (required).</param>
2929
/// <param name="total">Number of retrievable A/B tests. (required).</param>
3030
public ListABTestsResponse(List<ABTest> abtests, int count, int total)
@@ -35,9 +35,9 @@ public ListABTestsResponse(List<ABTest> abtests, int count, int total)
3535
}
3636

3737
/// <summary>
38-
/// A/B tests.
38+
/// The list of A/B tests, null if no A/B tests are configured for this application.
3939
/// </summary>
40-
/// <value>A/B tests.</value>
40+
/// <value>The list of A/B tests, null if no A/B tests are configured for this application.</value>
4141
[JsonPropertyName("abtests")]
4242
public List<ABTest> Abtests { get; set; }
4343

clients/algoliasearch-client-csharp/algoliasearch/Models/Analytics/GetStatusResponse.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,16 +24,16 @@ public GetStatusResponse() { }
2424
/// <summary>
2525
/// Initializes a new instance of the GetStatusResponse class.
2626
/// </summary>
27-
/// <param name="updatedAt">Date and time when the object was updated, in RFC 3339 format. (required).</param>
27+
/// <param name="updatedAt">Date and time when the object was updated, in RFC 3339 format. (required).</param>
2828
public GetStatusResponse(string updatedAt)
2929
{
3030
UpdatedAt = updatedAt ?? throw new ArgumentNullException(nameof(updatedAt));
3131
}
3232

3333
/// <summary>
34-
/// Date and time when the object was updated, in RFC 3339 format.
34+
/// Date and time when the object was updated, in RFC 3339 format.
3535
/// </summary>
36-
/// <value>Date and time when the object was updated, in RFC 3339 format. </value>
36+
/// <value>Date and time when the object was updated, in RFC 3339 format.</value>
3737
[JsonPropertyName("updatedAt")]
3838
public string UpdatedAt { get; set; }
3939

clients/algoliasearch-client-go/algolia/abtesting/model_list_ab_tests_response.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

clients/algoliasearch-client-java/algoliasearch/src/main/java/com/algolia/model/abtesting/ListABTestsResponse.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ public ListABTestsResponse addAbtests(ABTest abtestsItem) {
3030
return this;
3131
}
3232

33-
/** A/B tests. */
33+
/** The list of A/B tests, null if no A/B tests are configured for this application. */
3434
@javax.annotation.Nullable
3535
public List<ABTest> getAbtests() {
3636
return abtests;

clients/algoliasearch-client-javascript/packages/client-abtesting/model/listABTestsResponse.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import type { ABTest } from './aBTest';
44

55
export type ListABTestsResponse = {
66
/**
7-
* A/B tests.
7+
* The list of A/B tests, null if no A/B tests are configured for this application.
88
*/
99
abtests: Array<ABTest> | null;
1010

clients/algoliasearch-client-kotlin/client/src/commonMain/kotlin/com/algolia/client/model/abtesting/ListABTestsResponse.kt

Lines changed: 2 additions & 2 deletions
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. */

clients/algoliasearch-client-kotlin/client/src/commonMain/kotlin/com/algolia/client/model/analytics/GetStatusResponse.kt

Lines changed: 1 addition & 1 deletion
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
)

clients/algoliasearch-client-php/lib/Model/Abtesting/ListABTestsResponse.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ public function getAbtests()
192192
/**
193193
* Sets abtests.
194194
*
195-
* @param \Algolia\AlgoliaSearch\Model\Abtesting\ABTest[] $abtests A/B tests
195+
* @param \Algolia\AlgoliaSearch\Model\Abtesting\ABTest[] $abtests the list of A/B tests, null if no A/B tests are configured for this application
196196
*
197197
* @return self
198198
*/

clients/algoliasearch-client-python/algoliasearch/abtesting/models/list_ab_tests_response.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ class ListABTestsResponse(BaseModel):
3737
"""
3838

3939
abtests: List[ABTest]
40-
""" A/B tests. """
40+
""" The list of A/B tests, null if no A/B tests are configured for this application. """
4141
count: int
4242
""" Number of A/B tests. """
4343
total: int

clients/algoliasearch-client-python/algoliasearch/analytics/models/get_status_response.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ class GetStatusResponse(BaseModel):
3333
"""
3434

3535
updated_at: str
36-
""" Date and time when the object was updated, in RFC 3339 format. """
36+
""" Date and time when the object was updated, in RFC 3339 format. """
3737

3838
model_config = ConfigDict(
3939
strict=False,

0 commit comments

Comments
 (0)