
com.squareup.square.legacy.models.CatalogObjectBatch 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.JsonProperty;
import java.util.List;
import java.util.Objects;
/**
* This is a model class for CatalogObjectBatch type.
*/
public class CatalogObjectBatch {
private final List objects;
/**
* Initialization constructor.
* @param objects List of CatalogObject value for objects.
*/
@JsonCreator
public CatalogObjectBatch(@JsonProperty("objects") List objects) {
this.objects = objects;
}
/**
* Getter for Objects.
* A list of CatalogObjects belonging to this batch.
* @return Returns the List of CatalogObject
*/
@JsonGetter("objects")
public List getObjects() {
return objects;
}
@Override
public int hashCode() {
return Objects.hash(objects);
}
@Override
public boolean equals(Object obj) {
if (obj == this) {
return true;
}
if (!(obj instanceof CatalogObjectBatch)) {
return false;
}
CatalogObjectBatch other = (CatalogObjectBatch) obj;
return Objects.equals(objects, other.objects);
}
/**
* Converts this CatalogObjectBatch into string format.
* @return String representation of this class
*/
@Override
public String toString() {
return "CatalogObjectBatch [" + "objects=" + objects + "]";
}
/**
* Builds a new {@link CatalogObjectBatch.Builder} object.
* Creates the instance with the state of the current model.
* @return a new {@link CatalogObjectBatch.Builder} object
*/
public Builder toBuilder() {
Builder builder = new Builder(objects);
return builder;
}
/**
* Class to build instances of {@link CatalogObjectBatch}.
*/
public static class Builder {
private List objects;
/**
* Initialization constructor.
* @param objects List of CatalogObject value for objects.
*/
public Builder(List objects) {
this.objects = objects;
}
/**
* Setter for objects.
* @param objects List of CatalogObject value for objects.
* @return Builder
*/
public Builder objects(List objects) {
this.objects = objects;
return this;
}
/**
* Builds a new {@link CatalogObjectBatch} object using the set fields.
* @return {@link CatalogObjectBatch}
*/
public CatalogObjectBatch build() {
return new CatalogObjectBatch(objects);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy