Skip to content

Commit 72eb9b6

Browse files
committed
chore: add BatchDeleteReactionsRequest
1 parent 6dd5463 commit 72eb9b6

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
package io.getstream.core.models;
2+
3+
import com.fasterxml.jackson.annotation.JsonInclude;
4+
import com.fasterxml.jackson.annotation.JsonProperty;
5+
import java.util.List;
6+
7+
@JsonInclude(JsonInclude.Include.NON_NULL)
8+
public class BatchDeleteReactionsRequest {
9+
10+
private final List<String> ids;
11+
12+
public BatchDeleteReactionsRequest(@JsonProperty("ids") List<String> ids) {
13+
this.ids = ids;
14+
}
15+
16+
public List<String> getIds() {
17+
return ids;
18+
}
19+
}

0 commit comments

Comments
 (0)