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.
2 parents 70f81c4 + d125cf1 commit 379b848Copy full SHA for 379b848
Sources/RTM/IMConversation.swift
@@ -268,6 +268,7 @@ public class IMConversation {
268
#endif
269
}
270
271
+ /// Raw data of the conversation.
272
public private(set) var rawData: RawData {
273
set {
274
self.sync(self._rawData = newValue)
Sources/RTM/IMMessage.swift
@@ -216,7 +216,9 @@ open class IMMessage {
216
return message
217
218
219
- var isTransient: Bool = false
+ /// Whether the message is transient.
220
+ public internal(set) var isTransient: Bool = false
221
+
222
var isWill: Bool = false
223
224
/// ref: https://github.com/leancloud/avoscloud-push/blob/develop/push-server/doc/protocol.md#消息
0 commit comments