File tree Expand file tree Collapse file tree 4 files changed +17
-3
lines changed
src/main/java/io/getstream/chat/java/models Expand file tree Collapse file tree 4 files changed +17
-3
lines changed Original file line number Diff line number Diff line change @@ -452,6 +452,7 @@ public static QueryFlagReportsRequest queryFlagReports() {
452452 /**
453453 * Creates a review flag report request
454454 *
455+ * @param id the flag report id
455456 * @return the created request
456457 */
457458 @ NotNull
Original file line number Diff line number Diff line change @@ -190,22 +190,33 @@ protected Call<ConfigGetResponse> generateCall(Client client) {
190190 }
191191
192192 /**
193- * Creates a get or create request
193+ * Creates an upsert config request
194194 *
195- * @param type the channel type
196- * @param id the channel id
195+ * @param key the moderation config key
197196 * @return the created request
198197 */
199198 @ NotNull
200199 public static UpsertConfigRequest upsertConfig (@ NotNull String key ) {
201200 return new UpsertConfigRequest (key );
202201 }
203202
203+ /**
204+ * Creates a delete config request
205+ *
206+ * @param key the moderation config key
207+ * @return the created request
208+ */
204209 @ NotNull
205210 public static DeleteConfigRequest deleteConfig (@ NotNull String key ) {
206211 return new DeleteConfigRequest (key );
207212 }
208213
214+ /*
215+ * Creates a get config request
216+ *
217+ * @param key the moderation config key
218+ * @return the created request
219+ */
209220 @ NotNull
210221 public static ConfigGetRequest getConfig (@ NotNull String key ) {
211222 return new ConfigGetRequest (key );
Original file line number Diff line number Diff line change @@ -145,6 +145,7 @@ protected Call<UnreadCountsBatchResponse> generateCall(Client client) {
145145 /**
146146 * Creates a get request.
147147 *
148+ * @param userId the user id
148149 * @return the created request
149150 */
150151 @ NotNull
Original file line number Diff line number Diff line change @@ -46,6 +46,7 @@ public void requestAsync(
4646 * Use custom client implementation to execute requests
4747 *
4848 * @param client the client implementation
49+ * @return the request
4950 */
5051 public StreamRequest <T > withClient (Client client ) {
5152 this .client = client ;
You can’t perform that action at this time.
0 commit comments