File tree Expand file tree Collapse file tree 1 file changed +14
-0
lines changed
Expand file tree Collapse file tree 1 file changed +14
-0
lines changed Original file line number Diff line number Diff line change @@ -95,6 +95,11 @@ class Client
9595 */
9696 public SynonymSets $ synonymSets ;
9797
98+ /**
99+ * @var CurationSets
100+ */
101+ public CurationSets $ curationSets ;
102+
98103 /**
99104 * @var ApiCall
100105 */
@@ -127,6 +132,7 @@ public function __construct(array $config)
127132 $ this ->conversations = new Conversations ($ this ->apiCall );
128133 $ this ->nlSearchModels = new NLSearchModels ($ this ->apiCall );
129134 $ this ->synonymSets = new SynonymSets ($ this ->apiCall );
135+ $ this ->curationSets = new CurationSets ($ this ->apiCall );
130136 }
131137
132138 /**
@@ -248,4 +254,12 @@ public function getSynonymSets(): SynonymSets
248254 {
249255 return $ this ->synonymSets ;
250256 }
257+
258+ /**
259+ * @return CurationSets
260+ */
261+ public function getCurationSets (): CurationSets
262+ {
263+ return $ this ->curationSets ;
264+ }
251265}
You can’t perform that action at this time.
0 commit comments