From aac561aad3964a7ad2c8570554b047d4eda65a9c Mon Sep 17 00:00:00 2001 From: algolia-bot Date: Mon, 27 Jan 2025 11:01:55 +0000 Subject: [PATCH] fix(specs): add a linter to assert that type is present (generated) https://github.com/algolia/api-clients-automation/pull/4393 Co-authored-by: algolia-bot Co-authored-by: Pierre Millot --- algoliasearch/Models/Abtesting/ListABTestsResponse.cs | 6 +++--- algoliasearch/Models/Analytics/GetStatusResponse.cs | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/algoliasearch/Models/Abtesting/ListABTestsResponse.cs b/algoliasearch/Models/Abtesting/ListABTestsResponse.cs index 86e2b2a23..afa6e297a 100644 --- a/algoliasearch/Models/Abtesting/ListABTestsResponse.cs +++ b/algoliasearch/Models/Abtesting/ListABTestsResponse.cs @@ -24,7 +24,7 @@ public ListABTestsResponse() { } /// /// Initializes a new instance of the ListABTestsResponse class. /// - /// A/B tests. (required). + /// The list of A/B tests, null if no A/B tests are configured for this application. (required). /// Number of A/B tests. (required). /// Number of retrievable A/B tests. (required). public ListABTestsResponse(List abtests, int count, int total) @@ -35,9 +35,9 @@ public ListABTestsResponse(List abtests, int count, int total) } /// - /// A/B tests. + /// The list of A/B tests, null if no A/B tests are configured for this application. /// - /// A/B tests. + /// The list of A/B tests, null if no A/B tests are configured for this application. [JsonPropertyName("abtests")] public List Abtests { get; set; } diff --git a/algoliasearch/Models/Analytics/GetStatusResponse.cs b/algoliasearch/Models/Analytics/GetStatusResponse.cs index 3879d3664..2ad462340 100644 --- a/algoliasearch/Models/Analytics/GetStatusResponse.cs +++ b/algoliasearch/Models/Analytics/GetStatusResponse.cs @@ -24,16 +24,16 @@ public GetStatusResponse() { } /// /// Initializes a new instance of the GetStatusResponse class. /// - /// Date and time when the object was updated, in RFC 3339 format. (required). + /// Date and time when the object was updated, in RFC 3339 format. (required). public GetStatusResponse(string updatedAt) { UpdatedAt = updatedAt ?? throw new ArgumentNullException(nameof(updatedAt)); } /// - /// Date and time when the object was updated, in RFC 3339 format. + /// Date and time when the object was updated, in RFC 3339 format. /// - /// Date and time when the object was updated, in RFC 3339 format. + /// Date and time when the object was updated, in RFC 3339 format. [JsonPropertyName("updatedAt")] public string UpdatedAt { get; set; }