com.genesys.internal.authentication.model.ModelApiResponse 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.genesys.internal.authentication.model.ErrorResponse;
import com.genesys.internal.authentication.model.ResponseStatus;
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;
/**
* ModelApiResponse
*/
@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2017-12-15T23:20:05.171Z")
public class ModelApiResponse {
@SerializedName("data")
private Object data = null;
@SerializedName("errors")
private ErrorResponse errors = null;
@SerializedName("path")
private String path = null;
@SerializedName("status")
private ResponseStatus status = null;
public ModelApiResponse data(Object data) {
this.data = data;
return this;
}
/**
* Get data
* @return data
**/
@ApiModelProperty(value = "")
public Object getData() {
return data;
}
public void setData(Object data) {
this.data = data;
}
public ModelApiResponse errors(ErrorResponse errors) {
this.errors = errors;
return this;
}
/**
* Get errors
* @return errors
**/
@ApiModelProperty(value = "")
public ErrorResponse getErrors() {
return errors;
}
public void setErrors(ErrorResponse errors) {
this.errors = errors;
}
public ModelApiResponse path(String path) {
this.path = path;
return this;
}
/**
* Get path
* @return path
**/
@ApiModelProperty(value = "")
public String getPath() {
return path;
}
public void setPath(String path) {
this.path = path;
}
public ModelApiResponse status(ResponseStatus status) {
this.status = status;
return this;
}
/**
* Get status
* @return status
**/
@ApiModelProperty(required = true, value = "")
public ResponseStatus getStatus() {
return status;
}
public void setStatus(ResponseStatus status) {
this.status = status;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
ModelApiResponse _apiResponse = (ModelApiResponse) o;
return Objects.equals(this.data, _apiResponse.data) &&
Objects.equals(this.errors, _apiResponse.errors) &&
Objects.equals(this.path, _apiResponse.path) &&
Objects.equals(this.status, _apiResponse.status);
}
@Override
public int hashCode() {
return Objects.hash(data, errors, path, status);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class ModelApiResponse {\n");
sb.append(" data: ").append(toIndentedString(data)).append("\n");
sb.append(" errors: ").append(toIndentedString(errors)).append("\n");
sb.append(" path: ").append(toIndentedString(path)).append("\n");
sb.append(" status: ").append(toIndentedString(status)).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