Values.BotStatisticsSourceStatistics about a specific bot's traffic to a path, including the bot name, request count, and percentage of traffic.
type nonrec t = {botName : FilterString.t option;The name of the bot. For example, gptbot or googlebot.
*)requestCount : RequestCount.t option;The number of requests from this bot to the associated path within the specified time window.
*)percentage : PercentageValue.t option;The percentage of total requests to the associated path that came from this bot.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Double of PercentageValue.t
| `Long of RequestCount.t
| `String of FilterString.t ])
list ]