weixin.popular.bean.card.mpnews.gethtml.MpNewsGetHtmlResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of weixin-popular Show documentation
Show all versions of weixin-popular Show documentation
The weixin-popular is a JAVA SDK for weixin. Weixin web url is https://mp.weixin.qq.com.
The newest version!
package weixin.popular.bean.card.mpnews.gethtml;
import weixin.popular.bean.BaseResult;
/**
* 投放卡券-图文消息群发卡券-响应参数
*
* @author Moyq5
*
*/
public class MpNewsGetHtmlResult extends BaseResult {
/**
* 一段html代码,可以直接嵌入到图文消息的正文里。
* 即可以把这段代码嵌入到上传图文消息素材接口中的content字段里。
*/
private String content;
/**
* 返回一段html代码,可以直接嵌入到图文消息的正文里。
* 即可以把这段代码嵌入到上传图文消息素材接口中的content字段里。
* @return html代码
*/
public String getContent() {
return content;
}
/**
* 一段html代码,可以直接嵌入到图文消息的正文里。
* 即可以把这段代码嵌入到上传图文消息素材接口中的content字段里。
* @param content html代码
*/
public void setContent(String content) {
this.content = content;
}
}