NIMSDK-AOS  9.19.0
RobotMsgType.java
浏览该文件的文档.
1 package com.netease.nimlib.sdk.robot.model;
2 
3 /**
4  * 机器人消息类型
5  */
6 
7 public interface RobotMsgType {
8  /**
9  * 欢迎消息
10  */
11  String WELCOME = "00";
12  /**
13  * 文本消息
14  */
15  String TEXT = "01";
16  /**
17  * 模块跳转
18  */
19  String LINK = "03";
20 }