weixin.popular.bean.sns.SnsToken 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.sns;
import weixin.popular.bean.BaseResult;
public class SnsToken extends BaseResult{
private String access_token;
private Integer expires_in;
private String refresh_token;
private String openid;
private String scope;
private String unionid;
public String getAccess_token() {
return access_token;
}
public void setAccess_token(String accessToken) {
access_token = accessToken;
}
public Integer getExpires_in() {
return expires_in;
}
public void setExpires_in(Integer expiresIn) {
expires_in = expiresIn;
}
public String getRefresh_token() {
return refresh_token;
}
public void setRefresh_token(String refreshToken) {
refresh_token = refreshToken;
}
public String getOpenid() {
return openid;
}
public void setOpenid(String openid) {
this.openid = openid;
}
public String getScope() {
return scope;
}
public void setScope(String scope) {
this.scope = scope;
}
public String getUnionid() {
return unionid;
}
public void setUnionid(String unionid) {
this.unionid = unionid;
}
}