All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.squareup.square.models.CreateCustomerGroupResponse Maven / Gradle / Ivy

There is a newer version: 41.2.0.20241017
Show newest version

package com.squareup.square.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.squareup.square.http.client.HttpContext;
import java.util.List;
import java.util.Objects;

/**
 * This is a model class for CreateCustomerGroupResponse type.
 */
public class CreateCustomerGroupResponse {
    private HttpContext httpContext;
    private final List errors;
    private final CustomerGroup group;

    /**
     * Initialization constructor.
     * @param  errors  List of Error value for errors.
     * @param  group  CustomerGroup value for group.
     */
    @JsonCreator
    public CreateCustomerGroupResponse(
            @JsonProperty("errors") List errors,
            @JsonProperty("group") CustomerGroup group) {
        this.errors = errors;
        this.group = group;
    }

    @JsonIgnore
    public HttpContext getContext() {
        return httpContext;
    }

    /**
     * Getter for Errors.
     * Any errors that occurred during the request.
     * @return Returns the List of Error
     */
    @JsonGetter("errors")
    @JsonInclude(JsonInclude.Include.NON_NULL)
    public List getErrors() {
        return errors;
    }

    /**
     * Getter for Group.
     * Represents a group of customer profiles. Customer groups can be created, be modified, and
     * have their membership defined using the Customers API or within the Customer Directory in the
     * Square Seller Dashboard or Point of Sale.
     * @return Returns the CustomerGroup
     */
    @JsonGetter("group")
    @JsonInclude(JsonInclude.Include.NON_NULL)
    public CustomerGroup getGroup() {
        return group;
    }

    @Override
    public int hashCode() {
        return Objects.hash(errors, group);
    }

    @Override
    public boolean equals(Object obj) {
        if (obj == this) {
            return true;
        }
        if (!(obj instanceof CreateCustomerGroupResponse)) {
            return false;
        }
        CreateCustomerGroupResponse other = (CreateCustomerGroupResponse) obj;
        return Objects.equals(errors, other.errors)
            && Objects.equals(group, other.group);
    }

    /**
     * Converts this CreateCustomerGroupResponse into string format.
     * @return String representation of this class
     */
    @Override
    public String toString() {
        return "CreateCustomerGroupResponse [" + "errors=" + errors + ", group=" + group + "]";
    }

    /**
     * Builds a new {@link CreateCustomerGroupResponse.Builder} object.
     * Creates the instance with the state of the current model.
     * @return a new {@link CreateCustomerGroupResponse.Builder} object
     */
    public Builder toBuilder() {
        Builder builder = new Builder()
                .errors(getErrors())
                .group(getGroup());
        return builder;
    }

    /**
     * Class to build instances of {@link CreateCustomerGroupResponse}.
     */
    public static class Builder {
        private HttpContext httpContext;
        private List errors;
        private CustomerGroup group;



        /**
         * Setter for httpContext.
         * @param  httpContext  HttpContext value for httpContext.
         * @return Builder
         */
        public Builder httpContext(HttpContext httpContext) {
            this.httpContext = httpContext;
            return this;
        }

        /**
         * Setter for errors.
         * @param  errors  List of Error value for errors.
         * @return Builder
         */
        public Builder errors(List errors) {
            this.errors = errors;
            return this;
        }

        /**
         * Setter for group.
         * @param  group  CustomerGroup value for group.
         * @return Builder
         */
        public Builder group(CustomerGroup group) {
            this.group = group;
            return this;
        }

        /**
         * Builds a new {@link CreateCustomerGroupResponse} object using the set fields.
         * @return {@link CreateCustomerGroupResponse}
         */
        public CreateCustomerGroupResponse build() {
            CreateCustomerGroupResponse model =
                    new CreateCustomerGroupResponse(errors, group);
            model.httpContext = httpContext;
            return model;
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy