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

weixin.popular.bean.card.AdvancedInfoTextImage Maven / Gradle / Ivy

Go to download

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;

import com.alibaba.fastjson.annotation.JSONField;

/**
 * 图文列表
 * 
 * @author Moyq5
 *
 */
public class AdvancedInfoTextImage {

	/**
	 * 图片链接,必须调用上传图片接口上传图片获得链接,并在此填入,否则报错 
* 添加必填,长度:128 */ @JSONField(name = "image_url") private String imageUrl; /** * 图文描述
* 添加必填,长度:512 */ private String text; /** * 图片链接 */ public String getImageUrl() { return imageUrl; } /** * 图片链接,必须调用上传图片接口上传图片获得链接,并在此填入,否则报错
* 添加必填,长度:128 */ public void setImageUrl(String imageUrl) { this.imageUrl = imageUrl; } /** * 图文描述 */ public String getText() { return text; } /** * 图文描述
* 添加必填,长度:512 */ public void setText(String text) { this.text = text; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy