org.opendatadiscovery.client.model.Bucket Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ingestion-contract-client Show documentation
Show all versions of ingestion-contract-client Show documentation
Ingestion Contract WebFlux Client defines OpenDataDiscovery APIs and models for Spring WebClient
/*
* OpenDataDiscovery API Contract
* OpenDataDiscovery API Contract
*
* The version of the OpenAPI document: 0.0.1
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package org.opendatadiscovery.client.model;
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.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
import java.math.BigDecimal;
import org.opendatadiscovery.client.model.Exemplar;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
import com.fasterxml.jackson.annotation.JsonTypeName;
/**
* Bucket
*/
@JsonPropertyOrder({
Bucket.JSON_PROPERTY_UPPER_BOUND,
Bucket.JSON_PROPERTY_COUNT,
Bucket.JSON_PROPERTY_EXEMPLAR
})
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-04-17T12:42:16.563637609Z[Etc/UTC]")
public class Bucket {
public static final String JSON_PROPERTY_UPPER_BOUND = "upper_bound";
private BigDecimal upperBound;
public static final String JSON_PROPERTY_COUNT = "count";
private Long count;
public static final String JSON_PROPERTY_EXEMPLAR = "exemplar";
private Exemplar exemplar;
public Bucket() {
}
public Bucket upperBound(BigDecimal upperBound) {
this.upperBound = upperBound;
return this;
}
/**
* Get upperBound
* @return upperBound
**/
@javax.annotation.Nullable
@JsonProperty(JSON_PROPERTY_UPPER_BOUND)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public BigDecimal getUpperBound() {
return upperBound;
}
@JsonProperty(JSON_PROPERTY_UPPER_BOUND)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setUpperBound(BigDecimal upperBound) {
this.upperBound = upperBound;
}
public Bucket count(Long count) {
this.count = count;
return this;
}
/**
* Get count
* @return count
**/
@javax.annotation.Nonnull
@JsonProperty(JSON_PROPERTY_COUNT)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public Long getCount() {
return count;
}
@JsonProperty(JSON_PROPERTY_COUNT)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public void setCount(Long count) {
this.count = count;
}
public Bucket exemplar(Exemplar exemplar) {
this.exemplar = exemplar;
return this;
}
/**
* Get exemplar
* @return exemplar
**/
@javax.annotation.Nullable
@JsonProperty(JSON_PROPERTY_EXEMPLAR)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public Exemplar getExemplar() {
return exemplar;
}
@JsonProperty(JSON_PROPERTY_EXEMPLAR)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setExemplar(Exemplar exemplar) {
this.exemplar = exemplar;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
Bucket bucket = (Bucket) o;
return Objects.equals(this.upperBound, bucket.upperBound) &&
Objects.equals(this.count, bucket.count) &&
Objects.equals(this.exemplar, bucket.exemplar);
}
@Override
public int hashCode() {
return Objects.hash(upperBound, count, exemplar);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class Bucket {\n");
sb.append(" upperBound: ").append(toIndentedString(upperBound)).append("\n");
sb.append(" count: ").append(toIndentedString(count)).append("\n");
sb.append(" exemplar: ").append(toIndentedString(exemplar)).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(Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy