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

cn.woodwhales.common.webhook.model.param.ExecuteParam Maven / Gradle / Ivy

There is a newer version: 3.8.3
Show newest version
package cn.woodwhales.common.webhook.model.param;

/**
 * 请求参数对象
 * @author woodwhales on 2021-07-16 21:38
 */
public class ExecuteParam {
    /**
     * 通知地址
     */
    public String url;

    /**
     * 通知内容
     */
    public String content;

    private ExecuteParam(String url, String content) {
        this.url = url;
        this.content = content;
    }

    public static ExecuteParam newInstance(String url, String content) {
        return new ExecuteParam(url, content);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy