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

com.firefly.wechat.model.app.LinkMessageRequest Maven / Gradle / Ivy

There is a newer version: 5.0.2
Show newest version
package com.firefly.wechat.model.app;

import java.io.Serializable;

/**
 * @author Pengtao Qiu
 */
public class LinkMessageRequest extends CommonMessageRequest implements Serializable {

    private static final long serialVersionUID = 1L;

    private LinkMessageContent link;

    public LinkMessageRequest() {
        msgtype = "link";
    }

    public LinkMessageContent getLink() {
        return link;
    }

    public void setLink(LinkMessageContent link) {
        this.link = link;
    }

    @Override
    public String toString() {
        return "LinkMessageRequest{" +
                "link=" + link +
                ", touser='" + touser + '\'' +
                ", msgtype='" + msgtype + '\'' +
                '}';
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy