io.logicdrop.openapi.models.BetweenQueryFieldAllOf Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sparks-openapi-models Show documentation
Show all versions of sparks-openapi-models Show documentation
Logicdrop Sparks OpenAPI client
/*
* Sparks OpenAPI
* Generated documentation for the Logicdrop Sparks API and OpenAPI clients. Logicdrop Sparks lets users build rules, analyze data, and automate documents. Use it to make decisions faster, generate documents better, and learn from your data. ### Documentation - [User Documentation](https://docs.logicdrop.com) ### Modules - [Sparks Compute](https://docs.logicdrop.com/rules/introduction) - [Sparks Decision Tables](https://docs.logicdrop.com/rules/authoring-decision-tables) - [Sparks Documents](https://docs.logicdrop.com/documents/introduction) ### Clients - [OpenAPI Clients](https://docs.logicdrop.com/development/sample-clients) ### Security - [Authorizing API Requests](https://docs.logicdrop.com/development/authorization)
*
* The version of the OpenAPI document: v_VERSION_, build# _BUILD_
* Contact: [email protected]
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package io.logicdrop.openapi.models;
import java.util.Objects;
import java.util.Arrays;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonValue;
import io.logicdrop.openapi.models.QuerySource;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
/**
* BetweenQueryFieldAllOf
*/
@JsonPropertyOrder({
BetweenQueryFieldAllOf.JSON_PROPERTY_NAME,
BetweenQueryFieldAllOf.JSON_PROPERTY_QUERY,
BetweenQueryFieldAllOf.JSON_PROPERTY_MIN,
BetweenQueryFieldAllOf.JSON_PROPERTY_MAX
})
public class BetweenQueryFieldAllOf {
public static final String JSON_PROPERTY_NAME = "name";
private String name;
public static final String JSON_PROPERTY_QUERY = "query";
private QuerySource query;
public static final String JSON_PROPERTY_MIN = "min";
private Object min;
public static final String JSON_PROPERTY_MAX = "max";
private Object max;
public BetweenQueryFieldAllOf name(String name) {
this.name = name;
return this;
}
/**
* Get name
* @return name
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
@JsonProperty(JSON_PROPERTY_NAME)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public BetweenQueryFieldAllOf query(QuerySource query) {
this.query = query;
return this;
}
/**
* Get query
* @return query
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
@JsonProperty(JSON_PROPERTY_QUERY)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public QuerySource getQuery() {
return query;
}
public void setQuery(QuerySource query) {
this.query = query;
}
public BetweenQueryFieldAllOf min(Object min) {
this.min = min;
return this;
}
/**
* Get min
* @return min
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
@JsonProperty(JSON_PROPERTY_MIN)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public Object getMin() {
return min;
}
public void setMin(Object min) {
this.min = min;
}
public BetweenQueryFieldAllOf max(Object max) {
this.max = max;
return this;
}
/**
* Get max
* @return max
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
@JsonProperty(JSON_PROPERTY_MAX)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public Object getMax() {
return max;
}
public void setMax(Object max) {
this.max = max;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
BetweenQueryFieldAllOf betweenQueryFieldAllOf = (BetweenQueryFieldAllOf) o;
return Objects.equals(this.name, betweenQueryFieldAllOf.name) &&
Objects.equals(this.query, betweenQueryFieldAllOf.query) &&
Objects.equals(this.min, betweenQueryFieldAllOf.min) &&
Objects.equals(this.max, betweenQueryFieldAllOf.max);
}
@Override
public int hashCode() {
return Objects.hash(name, query, min, max);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class BetweenQueryFieldAllOf {\n");
sb.append(" name: ").append(toIndentedString(name)).append("\n");
sb.append(" query: ").append(toIndentedString(query)).append("\n");
sb.append(" min: ").append(toIndentedString(min)).append("\n");
sb.append(" max: ").append(toIndentedString(max)).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 ");
}
}