Skip to content

Commit aac561a

Browse files
algolia-botmillotp
andcommitted
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 258402c commit aac561a

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

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

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

0 commit comments

Comments
 (0)