@@ -74,6 +74,11 @@ class Client
7474 */
7575 public Analytics $ analytics ;
7676
77+ /**
78+ * @var Conversations
79+ */
80+ public Conversations $ conversations ;
81+
7782 /**
7883 * @var ApiCall
7984 */
@@ -91,17 +96,18 @@ public function __construct(array $config)
9196 $ this ->config = new Configuration ($ config );
9297 $ this ->apiCall = new ApiCall ($ this ->config );
9398
94- $ this ->collections = new Collections ($ this ->apiCall );
95- $ this ->stopwords = new Stopwords ($ this ->apiCall );
96- $ this ->aliases = new Aliases ($ this ->apiCall );
97- $ this ->keys = new Keys ($ this ->apiCall );
98- $ this ->debug = new Debug ($ this ->apiCall );
99- $ this ->metrics = new Metrics ($ this ->apiCall );
100- $ this ->health = new Health ($ this ->apiCall );
101- $ this ->operations = new Operations ($ this ->apiCall );
102- $ this ->multiSearch = new MultiSearch ($ this ->apiCall );
103- $ this ->presets = new Presets ($ this ->apiCall );
104- $ this ->analytics = new Analytics ($ this ->apiCall );
99+ $ this ->collections = new Collections ($ this ->apiCall );
100+ $ this ->stopwords = new Stopwords ($ this ->apiCall );
101+ $ this ->aliases = new Aliases ($ this ->apiCall );
102+ $ this ->keys = new Keys ($ this ->apiCall );
103+ $ this ->debug = new Debug ($ this ->apiCall );
104+ $ this ->metrics = new Metrics ($ this ->apiCall );
105+ $ this ->health = new Health ($ this ->apiCall );
106+ $ this ->operations = new Operations ($ this ->apiCall );
107+ $ this ->multiSearch = new MultiSearch ($ this ->apiCall );
108+ $ this ->presets = new Presets ($ this ->apiCall );
109+ $ this ->analytics = new Analytics ($ this ->apiCall );
110+ $ this ->conversations = new Conversations ($ this ->apiCall );
105111 }
106112
107113 /**
@@ -191,4 +197,12 @@ public function getAnalytics(): Analytics
191197 {
192198 return $ this ->analytics ;
193199 }
200+
201+ /**
202+ * @return Conversations
203+ */
204+ public function getConversations (): Conversations
205+ {
206+ return $ this ->conversations ;
207+ }
194208}
0 commit comments