WxOpenAuthorizationResult.java 1.6 KB
package org.theyeasy.weixin.model;

import java.io.Serializable;
import java.util.List;

import com.google.gson.annotations.SerializedName;

/**
 * 微信公众号授权信息
 * @author heshaojun
 *
 */
public class WxOpenAuthorizationResult implements Serializable {

	/**
	 * 
	 */
	private static final long serialVersionUID = 3349609697458922634L;
	
	@SerializedName("authorizer_appid")
	private String authorizerAppid;
	@SerializedName("authorizer_access_token")
	private String authorizerAccessToken;
	@SerializedName("expires_in")
	private int expiresIn;
	@SerializedName("authorizer_refresh_token")
	private String authorizerRefreshToken;
	@SerializedName("func_info")
	private List<WxOpenAuthorizationFuncResult> funcInfo;
	public String getAuthorizerAppid() {
		return authorizerAppid;
	}
	public void setAuthorizerAppid(String authorizerAppid) {
		this.authorizerAppid = authorizerAppid;
	}
	public String getAuthorizerAccessToken() {
		return authorizerAccessToken;
	}
	public void setAuthorizerAccessToken(String authorizerAccessToken) {
		this.authorizerAccessToken = authorizerAccessToken;
	}
	public int getExpiresIn() {
		return expiresIn;
	}
	public void setExpiresIn(int expiresIn) {
		this.expiresIn = expiresIn;
	}
	public String getAuthorizerRefreshToken() {
		return authorizerRefreshToken;
	}
	public void setAuthorizerRefreshToken(String authorizerRefreshToken) {
		this.authorizerRefreshToken = authorizerRefreshToken;
	}
	public List<WxOpenAuthorizationFuncResult> getFuncInfo() {
		return funcInfo;
	}
	public void setFuncInfo(List<WxOpenAuthorizationFuncResult> funcInfo) {
		this.funcInfo = funcInfo;
	}
	

}