Skip to content

Commit 44082c3

Browse files
algolia-botgazconroyGary Conroykai687
committed
fix(specs): extend Analytics descriptions (generated)
algolia/api-clients-automation#4360 Co-authored-by: algolia-bot <[email protected]> Co-authored-by: gazconroy <[email protected]> Co-authored-by: Gary Conroy <[email protected]> Co-authored-by: Kai Welke <[email protected]>
1 parent df54298 commit 44082c3

21 files changed

+74
-74
lines changed

lib/algolia/api/analytics_client.rb

Lines changed: 42 additions & 42 deletions
Large diffs are not rendered by default.

lib/algolia/models/analytics/daily_add_to_cart_rates.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
module Algolia
77
module Analytics
88
class DailyAddToCartRates
9-
# Add-to-cart rate, calculated as number of tracked searches with at least one add-to-cart event divided by the number of tracked searches. If null, Algolia didn't receive any search requests with `clickAnalytics` set to true.
9+
# Add-to-cart rate: calculated as the number of tracked searches with at least one add-to-cart event divided by the number of tracked searches. If null, Algolia didn't receive any search requests with `clickAnalytics` set to true.
1010
attr_accessor :rate
1111

1212
# Number of tracked searches. Tracked searches are search requests where the `clickAnalytics` parameter is true.

lib/algolia/models/analytics/daily_click_through_rates.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
module Algolia
77
module Analytics
88
class DailyClickThroughRates
9-
# Click-through rate, calculated as number of tracked searches with at least one click event divided by the number of tracked searches. If null, Algolia didn't receive any search requests with `clickAnalytics` set to true.
9+
# Click-through rate: calculated as the number of tracked searches with at least one click event divided by the number of tracked searches. If null, Algolia didn't receive any search requests with `clickAnalytics` set to true.
1010
attr_accessor :rate
1111

1212
# Number of clicks associated with this search.

lib/algolia/models/analytics/daily_conversion_rates.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
module Algolia
77
module Analytics
88
class DailyConversionRates
9-
# Conversion rate, calculated as number of tracked searches with at least one conversion event divided by the number of tracked searches. If null, Algolia didn't receive any search requests with `clickAnalytics` set to true.
9+
# Conversion rate: calculated as the number of tracked searches with at least one conversion event divided by the number of tracked searches. If null, Algolia didn't receive any search requests with `clickAnalytics` set to true.
1010
attr_accessor :rate
1111

1212
# Number of tracked searches. Tracked searches are search requests where the `clickAnalytics` parameter is true.

lib/algolia/models/analytics/daily_no_click_rates.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
module Algolia
77
module Analytics
88
class DailyNoClickRates
9-
# No click rate, calculated as number of tracked searches without any click divided by the number of tracked searches.
9+
# No click rate: calculated as the number of tracked searches without clicks divided by the number of tracked searches.
1010
attr_accessor :rate
1111

1212
# Number of tracked searches. Tracked searches are search requests where the `clickAnalytics` parameter is true.

lib/algolia/models/analytics/daily_no_results_rates.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ class DailyNoResultsRates
1515
# Number of searches.
1616
attr_accessor :count
1717

18-
# No results rate, calculated as number of searches with zero results divided by the total number of searches.
18+
# No results rate: calculated as the number of searches with zero results divided by the total number of searches.
1919
attr_accessor :rate
2020

2121
# Attribute mapping from ruby-style variable name to JSON key.

lib/algolia/models/analytics/daily_purchase_rates.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
module Algolia
77
module Analytics
88
class DailyPurchaseRates
9-
# Purchase rate, calculated as number of tracked searches with at least one purchase event divided by the number of tracked searches. If null, Algolia didn't receive any search requests with `clickAnalytics` set to true.
9+
# Purchase rate: calculated as the number of tracked searches with at least one purchase event divided by the number of tracked searches. If null, Algolia didn't receive any search requests with `clickAnalytics` set to true.
1010
attr_accessor :rate
1111

1212
# Number of tracked searches. Tracked searches are search requests where the `clickAnalytics` parameter is true.

lib/algolia/models/analytics/daily_revenue.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
module Algolia
77
module Analytics
88
class DailyRevenue
9-
# Revenue associated with this search, broken-down by currencies.
9+
# Revenue associated with this search: broken down by currency.
1010
attr_accessor :currencies
1111

1212
# Date in the format YYYY-MM-DD.

lib/algolia/models/analytics/get_add_to_cart_rate_response.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
module Algolia
77
module Analytics
88
class GetAddToCartRateResponse
9-
# Add-to-cart rate, calculated as number of tracked searches with at least one add-to-cart event divided by the number of tracked searches. If null, Algolia didn't receive any search requests with `clickAnalytics` set to true.
9+
# Add-to-cart rate: calculated as the number of tracked searches with at least one add-to-cart event divided by the number of tracked searches. If null, Algolia didn't receive any search requests with `clickAnalytics` set to true.
1010
attr_accessor :rate
1111

1212
# Number of tracked searches. Tracked searches are search requests where the `clickAnalytics` parameter is true.

lib/algolia/models/analytics/get_click_through_rate_response.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
module Algolia
77
module Analytics
88
class GetClickThroughRateResponse
9-
# Click-through rate, calculated as number of tracked searches with at least one click event divided by the number of tracked searches. If null, Algolia didn't receive any search requests with `clickAnalytics` set to true.
9+
# Click-through rate: calculated as the number of tracked searches with at least one click event divided by the number of tracked searches. If null, Algolia didn't receive any search requests with `clickAnalytics` set to true.
1010
attr_accessor :rate
1111

1212
# Number of clicks associated with this search.

0 commit comments

Comments
 (0)