
cn.leancloud.sms.AVCaptchaOption Maven / Gradle / Ivy
package cn.leancloud.sms;
import java.util.HashMap;
import java.util.Map;
public class AVCaptchaOption {
private int width = 0;
private int height = 0;
public int getWidth() {
return width;
}
public void setWidth(int width) {
this.width = width;
}
public int getHeight() {
return height;
}
public void setHeight(int height) {
this.height = height;
}
public Map getRequestParam() {
Map result = new HashMap(2);
result.put("height", String.valueOf(height));
result.put("width", String.valueOf(width));
return result;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy