|
5 | 5 | *
|
6 | 6 | */
|
7 | 7 |
|
8 |
| -/// Results : The [results](#results-data-model) of the query, grouped by service (and optionally, region), and aggregated over the appropriate time span. |
| 8 | +/// Results : The results of stats queries, may be grouped by service depending on endpoint, and aggregated over the appropriate time span. |
9 | 9 |
|
10 | 10 |
|
11 | 11 |
|
@@ -686,10 +686,15 @@ pub struct Results {
|
686 | 686 | /// The number of failed challenge solutions processed. For example, an incorrect CAPTCHA solution.
|
687 | 687 | #[serde(rename = "bot_challenges_failed", skip_serializing_if = "Option::is_none")]
|
688 | 688 | pub bot_challenges_failed: Option<i32>,
|
| 689 | + #[serde(rename = "service_id", skip_serializing_if = "Option::is_none")] |
| 690 | + pub service_id: Option<Box<String>>, |
| 691 | + /// Timestamp for the start of the time period being reported |
| 692 | + #[serde(rename = "start_time", skip_serializing_if = "Option::is_none")] |
| 693 | + pub start_time: Option<i32>, |
689 | 694 | }
|
690 | 695 |
|
691 | 696 | impl Results {
|
692 |
| - /// The [results](#results-data-model) of the query, grouped by service (and optionally, region), and aggregated over the appropriate time span. |
| 697 | + /// The results of stats queries, may be grouped by service depending on endpoint, and aggregated over the appropriate time span. |
693 | 698 | pub fn new() -> Results {
|
694 | 699 | Results {
|
695 | 700 | requests: None,
|
@@ -917,6 +922,8 @@ impl Results {
|
917 | 922 | bot_challenges_issued: None,
|
918 | 923 | bot_challenges_succeeded: None,
|
919 | 924 | bot_challenges_failed: None,
|
| 925 | + service_id: None, |
| 926 | + start_time: None, |
920 | 927 | }
|
921 | 928 | }
|
922 | 929 | }
|
|
0 commit comments