We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5aa6daf commit c9ac574Copy full SHA for c9ac574
src/Client.php
@@ -75,6 +75,11 @@ class Client
75
*/
76
public Analytics $analytics;
77
78
+ /**
79
+ * @var AnalyticsV2
80
+ */
81
+ public AnalyticsV2 $analyticsV2;
82
+
83
/**
84
* @var Stemming
85
@@ -128,6 +133,7 @@ public function __construct(array $config)
128
133
$this->multiSearch = new MultiSearch($this->apiCall);
129
134
$this->presets = new Presets($this->apiCall);
130
135
$this->analytics = new Analytics($this->apiCall);
136
+ $this->analyticsV2 = new AnalyticsV2($this->apiCall);
131
137
$this->stemming = new Stemming($this->apiCall);
132
138
$this->conversations = new Conversations($this->apiCall);
139
$this->nlSearchModels = new NLSearchModels($this->apiCall);
0 commit comments