io.github.silencelwy.smsapi.request.ApiResponse 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.util.List;
import java.util.Map;
public class ApiResponse {
private Map> header;
private byte[] body;
private int status = 0;
private String charset = "UTF-8";
public Map> getHeader() {
return header;
}
public void setHeader(Map> header) {
this.header = header;
}
public byte[] getBody() {
return body;
}
public void setBody(byte[] body) {
this.body = body;
}
public int getStatus() {
return status;
}
public void setStatus(int status) {
this.status = status;
}
public String getCharset() {
return charset;
}
public void setCharset(String charset) {
this.charset = charset;
}
}