`type.Message` v.s. `type.Payload`
huan opened this issue · 0 comments
huan commented
Lines 1 to 19 in f175a69
export enum MessageType { | |
Unknown = 0, | |
Attachment = 1, // Attach(6), | |
Audio = 2, // Audio(1), Voice(34) | |
Contact = 3, // ShareCard(42) | |
ChatHistory = 4, // ChatHistory(19) | |
Emoticon = 5, // Sticker: Emoticon(15), Emoticon(47) | |
Image = 6, // Img(2), Image(3) | |
Text = 7, // Text(1) | |
Location = 8, // Location(48) | |
MiniProgram = 9, // MiniProgram(33) | |
GroupNote = 10, // GroupNote(53) | |
Transfer = 11, // Transfers(2000) | |
RedEnvelope = 12, // RedEnvelopes(2001) | |
Recalled = 13, // Recalled(10002) | |
Url = 14, // Url(5) | |
Video = 15, // Video(4), Video(43) | |
} |
Lines 5 to 12 in f175a69
export enum PayloadType { | |
Unknown = 0, | |
Message = 1, | |
Contact = 2, | |
Room = 3, | |
RoomMember = 4, | |
Friendship = 5, | |
} |