We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2bdb704 commit c244e1eCopy full SHA for c244e1e
src/main/java/io/rong/models/response/HistoryMessage.java
@@ -11,6 +11,10 @@ public class HistoryMessage{
11
* Message sender ID
12
*/
13
private String fromUserId;
14
+ /**
15
+ * ultra group busChannel
16
+ */
17
+ private String busChannel;
18
/**
19
* message ID
20
@@ -100,6 +104,15 @@ public HistoryMessage setExpansion(Boolean expansion) {
100
104
return this;
101
105
}
102
106
107
+ public String getBusChannel() {
108
+ return busChannel;
109
+ }
110
+
111
+ public HistoryMessage setBusChannel(String busChannel) {
112
+ this.busChannel = busChannel;
113
+ return this;
114
115
103
116
public String getExtraContent() {
117
return extraContent;
118
0 commit comments