
com.squareup.square.legacy.models.CatalogCustomAttributeDefinitionNumberConfig Maven / Gradle / Ivy
package com.squareup.square.legacy.models;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonGetter;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
import io.apimatic.core.types.OptionalNullable;
import java.util.Objects;
/**
* This is a model class for CatalogCustomAttributeDefinitionNumberConfig type.
*/
public class CatalogCustomAttributeDefinitionNumberConfig {
private final OptionalNullable precision;
/**
* Initialization constructor.
* @param precision Integer value for precision.
*/
@JsonCreator
public CatalogCustomAttributeDefinitionNumberConfig(@JsonProperty("precision") Integer precision) {
this.precision = OptionalNullable.of(precision);
}
/**
* Initialization constructor.
* @param precision Integer value for precision.
*/
protected CatalogCustomAttributeDefinitionNumberConfig(OptionalNullable precision) {
this.precision = precision;
}
/**
* Internal Getter for Precision.
* An integer between 0 and 5 that represents the maximum number of positions allowed after the
* decimal in number custom attribute values For example: - if the precision is 0, the quantity
* can be 1, 2, 3, etc. - if the precision is 1, the quantity can be 0.1, 0.2, etc. - if the
* precision is 2, the quantity can be 0.01, 0.12, etc. Default: 5
* @return Returns the Internal Integer
*/
@JsonGetter("precision")
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonSerialize(using = OptionalNullable.Serializer.class)
protected OptionalNullable internalGetPrecision() {
return this.precision;
}
/**
* Getter for Precision.
* An integer between 0 and 5 that represents the maximum number of positions allowed after the
* decimal in number custom attribute values For example: - if the precision is 0, the quantity
* can be 1, 2, 3, etc. - if the precision is 1, the quantity can be 0.1, 0.2, etc. - if the
* precision is 2, the quantity can be 0.01, 0.12, etc. Default: 5
* @return Returns the Integer
*/
@JsonIgnore
public Integer getPrecision() {
return OptionalNullable.getFrom(precision);
}
@Override
public int hashCode() {
return Objects.hash(precision);
}
@Override
public boolean equals(Object obj) {
if (obj == this) {
return true;
}
if (!(obj instanceof CatalogCustomAttributeDefinitionNumberConfig)) {
return false;
}
CatalogCustomAttributeDefinitionNumberConfig other = (CatalogCustomAttributeDefinitionNumberConfig) obj;
return Objects.equals(precision, other.precision);
}
/**
* Converts this CatalogCustomAttributeDefinitionNumberConfig into string format.
* @return String representation of this class
*/
@Override
public String toString() {
return "CatalogCustomAttributeDefinitionNumberConfig [" + "precision=" + precision + "]";
}
/**
* Builds a new {@link CatalogCustomAttributeDefinitionNumberConfig.Builder} object.
* Creates the instance with the state of the current model.
* @return a new {@link CatalogCustomAttributeDefinitionNumberConfig.Builder} object
*/
public Builder toBuilder() {
Builder builder = new Builder();
builder.precision = internalGetPrecision();
return builder;
}
/**
* Class to build instances of {@link CatalogCustomAttributeDefinitionNumberConfig}.
*/
public static class Builder {
private OptionalNullable precision;
/**
* Setter for precision.
* @param precision Integer value for precision.
* @return Builder
*/
public Builder precision(Integer precision) {
this.precision = OptionalNullable.of(precision);
return this;
}
/**
* UnSetter for precision.
* @return Builder
*/
public Builder unsetPrecision() {
precision = null;
return this;
}
/**
* Builds a new {@link CatalogCustomAttributeDefinitionNumberConfig} object using the set
* fields.
* @return {@link CatalogCustomAttributeDefinitionNumberConfig}
*/
public CatalogCustomAttributeDefinitionNumberConfig build() {
return new CatalogCustomAttributeDefinitionNumberConfig(precision);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy