消息类别

最近更新时间:2022-09-20 05:17:40

typedef NS_ENUM(NSInteger, ARtmMessageType) {
     
   /**
    0: 未定义的消息类别。
    */
    ARtmMessageTypeUndefined = 0,
     
   /**
    1: 文本消息。
    */
    ARtmMessageTypeText = 1,
     
   /**
    2: 自定义二进制消息。
    */
    ARtmMessageTypeRaw = 2,
     
   /**
    3: 文件消息。大小不得超过 32 KB。
    */
    ARtmMessageTypeFile = 3,
   
   /**
    4: 图片消息。大小不得超过 32 KB。
    */
    ARtmMessageTypeImage = 4,
};