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

com.hn.robot.dingtalk.domain.Link Maven / Gradle / Ivy

There is a newer version: 1.0.18
Show newest version
package com.hn.robot.dingtalk.domain;

import lombok.Data;

/**
 * 描述: link类型
 *
 * @author fei
 */
@Data
public class Link {
    /**
     * 消息内容。如果太长只会部分展示
     */
    private String text;
    /**
     * 消息标题
     */
    private String title;
    /**
     * 点击消息跳转的URL
     */
    private String messageUrl;
    /**
     * 图片URL
     */
    private String picUrl;

    public Link(String title, String messageUrl, String picUrl) {
        this.title = title;
        this.messageUrl = messageUrl;
        this.picUrl = picUrl;
    }

    public Link() {}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy