weixin.popular.bean.token.Token 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.token;
import weixin.popular.bean.BaseResult;
public class Token extends BaseResult {
private String access_token;
private int expires_in;
public String getAccess_token() {
return access_token;
}
public void setAccess_token(String accessToken) {
access_token = accessToken;
}
public int getExpires_in() {
return expires_in;
}
public void setExpires_in(int expiresIn) {
expires_in = expiresIn;
}
}