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

cn.structured.oauth.api.dto.Oauth2TokenDto Maven / Gradle / Ivy

The newest version!
package cn.structured.oauth.api.dto;

import lombok.Data;

/**
 * @author chuck
 * @version 2024/07/22 下午8:22
 * @since 1.8
 */
@Data
public class Oauth2TokenDto {
    /**
     * 访问令牌
     */
    private String accessToken;
    /**
     * 刷新令牌
     */
    private String refreshToken;
    /**
     * 访问令牌类型
     */
    private String tokenType;
    /**
     * 有效时间(秒)
     */
    private Integer expires;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy