cn.woodwhales.common.webhook.model.param.ExecuteParam Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of woodwhales-common Show documentation
Show all versions of woodwhales-common Show documentation
https://github.com/woodwhales
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