com.genesys.internal.authentication.model.DefaultOAuth2AccessToken Maven / Gradle / Ivy
The newest version!
/*
* Authentication API
* Authentication API
*
* OpenAPI spec version: 9.0.000.00.872
*
*
* NOTE: This class is auto generated by the swagger code generator program.
* https://github.com/swagger-api/swagger-codegen.git
* Do not edit the class manually.
*/
package com.genesys.internal.authentication.model;
import java.util.Objects;
import com.google.gson.TypeAdapter;
import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
/**
* DefaultOAuth2AccessToken
*/
@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2017-12-15T23:20:05.171Z")
public class DefaultOAuth2AccessToken {
@SerializedName("access_token")
private String accessToken = null;
@SerializedName("expires_in")
private Integer expiresIn = null;
@SerializedName("refresh_token")
private String refreshToken = null;
@SerializedName("scope")
private String scope = null;
@SerializedName("token_type")
private String tokenType = null;
public DefaultOAuth2AccessToken accessToken(String accessToken) {
this.accessToken = accessToken;
return this;
}
/**
* The access token.
* @return accessToken
**/
@ApiModelProperty(value = "The access token.")
public String getAccessToken() {
return accessToken;
}
public void setAccessToken(String accessToken) {
this.accessToken = accessToken;
}
public DefaultOAuth2AccessToken expiresIn(Integer expiresIn) {
this.expiresIn = expiresIn;
return this;
}
/**
* The time, in seconds, before the token expiration.
* @return expiresIn
**/
@ApiModelProperty(value = "The time, in seconds, before the token expiration.")
public Integer getExpiresIn() {
return expiresIn;
}
public void setExpiresIn(Integer expiresIn) {
this.expiresIn = expiresIn;
}
public DefaultOAuth2AccessToken refreshToken(String refreshToken) {
this.refreshToken = refreshToken;
return this;
}
/**
* The refresh token.
* @return refreshToken
**/
@ApiModelProperty(value = "The refresh token.")
public String getRefreshToken() {
return refreshToken;
}
public void setRefreshToken(String refreshToken) {
this.refreshToken = refreshToken;
}
public DefaultOAuth2AccessToken scope(String scope) {
this.scope = scope;
return this;
}
/**
* The scope of the token.
* @return scope
**/
@ApiModelProperty(value = "The scope of the token.")
public String getScope() {
return scope;
}
public void setScope(String scope) {
this.scope = scope;
}
public DefaultOAuth2AccessToken tokenType(String tokenType) {
this.tokenType = tokenType;
return this;
}
/**
* The type of access token — always 'bearer'.
* @return tokenType
**/
@ApiModelProperty(value = "The type of access token — always 'bearer'.")
public String getTokenType() {
return tokenType;
}
public void setTokenType(String tokenType) {
this.tokenType = tokenType;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
DefaultOAuth2AccessToken defaultOAuth2AccessToken = (DefaultOAuth2AccessToken) o;
return Objects.equals(this.accessToken, defaultOAuth2AccessToken.accessToken) &&
Objects.equals(this.expiresIn, defaultOAuth2AccessToken.expiresIn) &&
Objects.equals(this.refreshToken, defaultOAuth2AccessToken.refreshToken) &&
Objects.equals(this.scope, defaultOAuth2AccessToken.scope) &&
Objects.equals(this.tokenType, defaultOAuth2AccessToken.tokenType);
}
@Override
public int hashCode() {
return Objects.hash(accessToken, expiresIn, refreshToken, scope, tokenType);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class DefaultOAuth2AccessToken {\n");
sb.append(" accessToken: ").append(toIndentedString(accessToken)).append("\n");
sb.append(" expiresIn: ").append(toIndentedString(expiresIn)).append("\n");
sb.append(" refreshToken: ").append(toIndentedString(refreshToken)).append("\n");
sb.append(" scope: ").append(toIndentedString(scope)).append("\n");
sb.append(" tokenType: ").append(toIndentedString(tokenType)).append("\n");
sb.append("}");
return sb.toString();
}
/**
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(java.lang.Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy