We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 06ff1c9 commit 438f06cCopy full SHA for 438f06c
1 file changed
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
@@ -118,6 +123,7 @@ public function __construct(array $config)
118
123
$this->multiSearch = new MultiSearch($this->apiCall);
119
124
$this->presets = new Presets($this->apiCall);
120
125
$this->analytics = new Analytics($this->apiCall);
126
+ $this->analyticsV2 = new AnalyticsV2($this->apiCall);
121
127
$this->stemming = new Stemming($this->apiCall);
122
128
$this->conversations = new Conversations($this->apiCall);
129
$this->nlSearchModels = new NLSearchModels($this->apiCall);
0 commit comments