
org.jeewx.api.third.AuthorizerOptionRet Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jeewx-api Show documentation
Show all versions of jeewx-api Show documentation
JEEWX-API(微信极速SDK、同时支持微信公众号\企业微信\支付窗\小程序\微博).
The newest version!
package org.jeewx.api.third;
/**
* 选项设置信息返回实体
*/
public class AuthorizerOptionRet {
//授权公众号appid
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;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy