Package com.zone.weixin4j.response
Class VideoResponse
- java.lang.Object
-
- com.zone.weixin4j.response.VideoResponse
-
- All Implemented Interfaces:
WeixinResponse
public class VideoResponse extends Object implements WeixinResponse
回复视频消息- Since:
- JDK 1.6
- Author:
- jinyu(foxinmy@gmail.com)
-
-
Constructor Summary
Constructors Constructor Description VideoResponse(String mediaId)
VideoResponse(String mediaId, String title, String desc)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getDesc()
String
getMediaId()
String
getMsgType()
回复的消息类型String
getTitle()
void
setDesc(String desc)
void
setTitle(String title)
String
toContent()
回复的消息内容
-
-
-
Method Detail
-
toContent
public String toContent()
Description copied from interface:WeixinResponse
回复的消息内容- Specified by:
toContent
in interfaceWeixinResponse
- Returns:
-
getMediaId
public String getMediaId()
-
getTitle
public String getTitle()
-
setTitle
public void setTitle(String title)
-
getDesc
public String getDesc()
-
setDesc
public void setDesc(String desc)
-
getMsgType
public String getMsgType()
Description copied from interface:WeixinResponse
回复的消息类型- Specified by:
getMsgType
in interfaceWeixinResponse
- Returns:
-
-