tech.amikos.chromadb.model.ValidationError Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of chromadb-java-client Show documentation
Show all versions of chromadb-java-client Show documentation
Chroma Vector DB Java Client
The newest version!
/*
* FastAPI
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
*
* OpenAPI spec version: 0.1.0
*
*
* 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 tech.amikos.chromadb.model;
import java.util.Objects;
import java.util.Arrays;
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.v3.oas.annotations.media.Schema;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
/**
* ValidationError
*/
@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2024-08-13T09:37:37.268Z[Etc/UTC]")
public class ValidationError {
@SerializedName("loc")
private List loc = new ArrayList();
@SerializedName("msg")
private String msg = null;
@SerializedName("type")
private String type = null;
public ValidationError loc(List loc) {
this.loc = loc;
return this;
}
public ValidationError addLocItem(AnyOfValidationErrorLocItems locItem) {
this.loc.add(locItem);
return this;
}
/**
* Get loc
* @return loc
**/
@Schema(required = true, description = "")
public List getLoc() {
return loc;
}
public void setLoc(List loc) {
this.loc = loc;
}
public ValidationError msg(String msg) {
this.msg = msg;
return this;
}
/**
* Get msg
* @return msg
**/
@Schema(required = true, description = "")
public String getMsg() {
return msg;
}
public void setMsg(String msg) {
this.msg = msg;
}
public ValidationError type(String type) {
this.type = type;
return this;
}
/**
* Get type
* @return type
**/
@Schema(required = true, description = "")
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
ValidationError validationError = (ValidationError) o;
return Objects.equals(this.loc, validationError.loc) &&
Objects.equals(this.msg, validationError.msg) &&
Objects.equals(this.type, validationError.type);
}
@Override
public int hashCode() {
return Objects.hash(loc, msg, type);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class ValidationError {\n");
sb.append(" loc: ").append(toIndentedString(loc)).append("\n");
sb.append(" msg: ").append(toIndentedString(msg)).append("\n");
sb.append(" type: ").append(toIndentedString(type)).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 ");
}
}