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

com.nulabinc.backlog4j.auth.AccessToken Maven / Gradle / Ivy

There is a newer version: 2.6.0
Show newest version
package com.nulabinc.backlog4j.auth;

import java.io.Serializable;

/**
 * @author nulab-inc
 */
public class AccessToken implements Serializable {

    protected String type;
    protected String token;
    protected Long expires;
    protected String refresh;

    public AccessToken(String token, Long expires, String refresh) {
        this.token = token;
        this.expires = expires;
        this.refresh = refresh;
    }

    public String getToken() {
        return token;
    }

    public Long getExpires() {
        return expires;
    }

    public String getRefresh() {
        return refresh;
    }

    public String getType() {
        return type;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy