package com.yanzuoguang.wxxcx.servicecustomer.send;


/**
 * 发送客服消息给用户 请求图文链接消息内容
 *
 * @author 李贤军
 */
public class WxXcxCustomerServiceMessageSendLinkReq {
    /**
     * 消息标题
     */
    private String title;
    /**
     * 图文链接消息
     */
    private String description;
    /**
     * 图文链接消息被点击后跳转的链接
     */
    private String url;
    /**
     * 图文链接消息的图片链接,支持 JPG、PNG 格式,较好的效果为大图 640 X 320,小图 80 X 80
     */
    private String thumbUrl;

    public String getTitle() {
        return title;
    }

    public void setTitle(String title) {
        this.title = title;
    }

    public String getDescription() {
        return description;
    }

    public void setDescription(String description) {
        this.description = description;
    }

    public String getUrl() {
        return url;
    }

    public void setUrl(String url) {
        this.url = url;
    }

    public String getThumbUrl() {
        return thumbUrl;
    }

    public void setThumbUrl(String thumbUrl) {
        this.thumbUrl = thumbUrl;
    }
}