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

io.callstats.sdk.messages.AuthenticateResponse Maven / Gradle / Ivy

package io.callstats.sdk.messages;

import com.google.gson.annotations.SerializedName;

public class AuthenticateResponse {
	/** The access token */
	@SerializedName("access_token")
	private String token;

	/** The token type */
	@SerializedName("token_type")
	private String tokenType;
	
	/** When token expires */
	@SerializedName("expires_in")
	private long expires;
	
	public String getToken() {
		return token;
	}

	public void setToken(String token) {
		this.token = token;
	}

	public String getTokenType() {
		return tokenType;
	}

	public void setTokenType(String tokenType) {
		this.tokenType = tokenType;
	}

	public long getExpires() {
		return expires;
	}

	public void setExpires(long expires) {
		this.expires = expires;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy