@@ -114,6 +114,15 @@ public CompletableFuture<BatchConsumerUsersWithRulesResult> getConsumerUsers(
114114 return this .rawClient .getConsumerUsers (batchId , request , requestOptions ).thenApply (response -> response .body ());
115115 }
116116
117+ public CompletableFuture <BatchResponse > createBusinessUsers (BusinessBatchRequest request ) {
118+ return this .rawClient .createBusinessUsers (request ).thenApply (response -> response .body ());
119+ }
120+
121+ public CompletableFuture <BatchResponse > createBusinessUsers (
122+ BusinessBatchRequest request , RequestOptions requestOptions ) {
123+ return this .rawClient .createBusinessUsers (request , requestOptions ).thenApply (response -> response .body ());
124+ }
125+
117126 public CompletableFuture <BatchBusinessUsersWithRulesResults > getBusinessUsers (String batchId ) {
118127 return this .rawClient .getBusinessUsers (batchId ).thenApply (response -> response .body ());
119128 }
@@ -128,13 +137,13 @@ public CompletableFuture<BatchBusinessUsersWithRulesResults> getBusinessUsers(
128137 return this .rawClient .getBusinessUsers (batchId , request , requestOptions ).thenApply (response -> response .body ());
129138 }
130139
131- public CompletableFuture <BatchResponse > createBusinessUsers ( BusinessBatchRequest request ) {
132- return this .rawClient .createBusinessUsers (request ).thenApply (response -> response .body ());
140+ public CompletableFuture <BatchResponse > createConsumerUserEvents ( ConsumerUserEventBatchRequest request ) {
141+ return this .rawClient .createConsumerUserEvents (request ).thenApply (response -> response .body ());
133142 }
134143
135- public CompletableFuture <BatchResponse > createBusinessUsers (
136- BusinessBatchRequest request , RequestOptions requestOptions ) {
137- return this .rawClient .createBusinessUsers (request , requestOptions ).thenApply (response -> response .body ());
144+ public CompletableFuture <BatchResponse > createConsumerUserEvents (
145+ ConsumerUserEventBatchRequest request , RequestOptions requestOptions ) {
146+ return this .rawClient .createConsumerUserEvents (request , requestOptions ).thenApply (response -> response .body ());
138147 }
139148
140149 public CompletableFuture <BatchConsumerUserEventsRulesResult > getConsumerUserEvents (String batchId ) {
@@ -153,6 +162,15 @@ public CompletableFuture<BatchConsumerUserEventsRulesResult> getConsumerUserEven
153162 .thenApply (response -> response .body ());
154163 }
155164
165+ public CompletableFuture <BatchResponse > createBusinessUserEvents (BusinessUserEventBatchRequest request ) {
166+ return this .rawClient .createBusinessUserEvents (request ).thenApply (response -> response .body ());
167+ }
168+
169+ public CompletableFuture <BatchResponse > createBusinessUserEvents (
170+ BusinessUserEventBatchRequest request , RequestOptions requestOptions ) {
171+ return this .rawClient .createBusinessUserEvents (request , requestOptions ).thenApply (response -> response .body ());
172+ }
173+
156174 public CompletableFuture <BatchBusinessUserEventsWithRulesResult > getBusinessUserEvents (String batchId ) {
157175 return this .rawClient .getBusinessUserEvents (batchId ).thenApply (response -> response .body ());
158176 }
@@ -168,22 +186,4 @@ public CompletableFuture<BatchBusinessUserEventsWithRulesResult> getBusinessUser
168186 .getBusinessUserEvents (batchId , request , requestOptions )
169187 .thenApply (response -> response .body ());
170188 }
171-
172- public CompletableFuture <BatchResponse > createConsumerUserEvents (ConsumerUserEventBatchRequest request ) {
173- return this .rawClient .createConsumerUserEvents (request ).thenApply (response -> response .body ());
174- }
175-
176- public CompletableFuture <BatchResponse > createConsumerUserEvents (
177- ConsumerUserEventBatchRequest request , RequestOptions requestOptions ) {
178- return this .rawClient .createConsumerUserEvents (request , requestOptions ).thenApply (response -> response .body ());
179- }
180-
181- public CompletableFuture <BatchResponse > createBusinessUserEvents (BusinessUserEventBatchRequest request ) {
182- return this .rawClient .createBusinessUserEvents (request ).thenApply (response -> response .body ());
183- }
184-
185- public CompletableFuture <BatchResponse > createBusinessUserEvents (
186- BusinessUserEventBatchRequest request , RequestOptions requestOptions ) {
187- return this .rawClient .createBusinessUserEvents (request , requestOptions ).thenApply (response -> response .body ());
188- }
189189}
0 commit comments