weixin.popular.bean.component.AuthorizerAccessToken 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.
package weixin.popular.bean.component;
import weixin.popular.bean.BaseResult;
public class AuthorizerAccessToken extends BaseResult {
private String authorizer_access_token;
private Integer expires_in;
private String authorizer_refresh_token;
public String getAuthorizer_access_token() {
return authorizer_access_token;
}
public void setAuthorizer_access_token(String authorizer_access_token) {
this.authorizer_access_token = authorizer_access_token;
}
public Integer getExpires_in() {
return expires_in;
}
public void setExpires_in(Integer expires_in) {
this.expires_in = expires_in;
}
public String getAuthorizer_refresh_token() {
return authorizer_refresh_token;
}
public void setAuthorizer_refresh_token(String authorizer_refresh_token) {
this.authorizer_refresh_token = authorizer_refresh_token;
}
}