io.github.silencelwy.smsapi.request.ApiRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jf-sms-send-sdk Show documentation
Show all versions of jf-sms-send-sdk Show documentation
a tool about send short message
package io.github.silencelwy.smsapi.request;
import java.io.Serializable;
import java.util.HashMap;
import java.util.Map;
import java.util.stream.Collectors;
/**
* @author gusy
*/
public class ApiRequest implements Serializable {
private Map headers;
private Map bodyParams;
private String url;
public Map getHeaders() {
return headers;
}
public void setHeaders(Map headers) {
this.headers = headers;
}
public Map getBodyParams() {
return bodyParams;
}
public void setBodyParams(Map bodyParams) {
this.bodyParams = bodyParams;
}
public String getUrl() {
return url;
}
public void setUrl(String url) {
this.url = url;
}
}