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

com.wirecash.api.models.Responses.AuthenticateResponse Maven / Gradle / Ivy

There is a newer version: 1.1.0
Show newest version
package com.wirecash.api.models.Responses;

/**
 * Created by Max on 7/12/17.
 */
public class AuthenticateResponse {
    private String access_token;
    private Integer expires_in;
    private String token_type;
    private String refresh_token;

    public String getAccess_token() {
        return access_token;
    }

    public void setAccess_token(String access_token) {
        this.access_token = access_token;
    }

    public Integer getExpires_in() {
        return expires_in;
    }

    public void setExpires_in(Integer expires_in) {
        this.expires_in = expires_in;
    }

    public String getToken_type() {
        return token_type;
    }

    public void setToken_type(String token_type) {
        this.token_type = token_type;
    }

    public String getRefresh_token() {
        return refresh_token;
    }

    public void setRefresh_token(String refresh_token) {
        this.refresh_token = refresh_token;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy