Skip to content

Commit c244e1e

Browse files
committed
feat(m-5975406062):Support groups, ultra groups, and chat rooms to query historical messages.
1 parent 2bdb704 commit c244e1e

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

src/main/java/io/rong/models/response/HistoryMessage.java

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,10 @@ public class HistoryMessage{
1111
* Message sender ID
1212
*/
1313
private String fromUserId;
14+
/**
15+
* ultra group busChannel
16+
*/
17+
private String busChannel;
1418
/**
1519
* message ID
1620
*/
@@ -100,6 +104,15 @@ public HistoryMessage setExpansion(Boolean expansion) {
100104
return this;
101105
}
102106

107+
public String getBusChannel() {
108+
return busChannel;
109+
}
110+
111+
public HistoryMessage setBusChannel(String busChannel) {
112+
this.busChannel = busChannel;
113+
return this;
114+
}
115+
103116
public String getExtraContent() {
104117
return extraContent;
105118
}

0 commit comments

Comments
 (0)