weixin.popular.bean.component.AuthorizerOption Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of weixin-popular Show documentation
Show all versions of weixin-popular Show documentation
The weixin-popular is a JAVA SDK for weixin. Weixin web url is https://mp.weixin.qq.com.
The newest version!
package weixin.popular.bean.component;
import weixin.popular.bean.BaseResult;
public class AuthorizerOption extends BaseResult {
private String authorizer_appid;
private String option_name;
private String option_value;
public String getAuthorizer_appid() {
return authorizer_appid;
}
public void setAuthorizer_appid(String authorizer_appid) {
this.authorizer_appid = authorizer_appid;
}
public String getOption_name() {
return option_name;
}
public void setOption_name(String option_name) {
this.option_name = option_name;
}
public String getOption_value() {
return option_value;
}
public void setOption_value(String option_value) {
this.option_value = option_value;
}
}