All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.eworkcloud.wechat.model.WechatAccessToken Maven / Gradle / Ivy

There is a newer version: 1.1.8
Show newest version
package com.eworkcloud.wechat.model;

import lombok.Getter;
import lombok.Setter;

@Getter
@Setter
public class WechatAccessToken extends WechatResponse {
    /**
     * 访问令牌
     */
    private String access_token;
    /**
     * 超时时间,单位(秒)
     */
    private Integer expires_in;
    /**
     * 刷新令牌
     */
    private String refresh_token;
    /**
     * OPENID
     */
    private String openid;
    /**
     * 用户授权的作用域,使用逗号(,)分隔
     */
    private String scope;
    /**
     * 获得该用户授权时,才会出现该字段。
     */
    private String unionid;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy