View Javadoc
1   package com.foxinmy.weixin4j.type;
2   
3   /**
4    * 应用类型
5    * 
6    * @className AgentType
7    * @author jinyu(foxinmy@gmail.com)
8    * @date 2015年8月1日
9    * @since JDK 1.6
10   * @see
11   */
12  public enum AgentType {
13  	/**
14  	 * 聊天应用
15  	 */
16  	chat,
17  	// 企业客服回调
18  	/**
19  	 * 企业号内部客服,客户为企业号通讯录成员
20  	 */
21  	kf_internal,
22  	/**
23  	 * 企业号外部客服,客户为服务号openid
24  	 */
25  	kf_external
26  }