All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.foxinmy.weixin4j.response.WeixinResponse Maven / Gradle / Ivy

package com.foxinmy.weixin4j.response;


/**
 * 微信被动消息回复
 * 
 * @className WeixinResponse
 * @author jinyu([email protected])
 * @date 2015年5月5日
 * @since JDK 1.6
 * @see TextResponse
 * @see ImageResponse
 * @see MusicResponse
 * @see VoiceResponse
 * @see VideoResponse
 * @see NewsResponse
 * @see TransferCustomerResponse
 * @see SingleResponse
 * @see BlankResponse
 * @see 订阅号、服务号的被动响应消息
 * @see 企业号的被动响应消息
 */
public interface WeixinResponse {
	/**
	 * 回复的消息类型
	 * 
	 * @return
	 */
	public String getMsgType();

	/**
	 * 回复的消息内容
	 * 
	 * @return
	 */
	public String toContent();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy