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

com.commercetools.history.models.label.QuoteLabelImpl Maven / Gradle / Ivy

There is a newer version: 17.15.1
Show newest version

package com.commercetools.history.models.label;

import java.time.*;
import java.util.*;

import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.databind.annotation.*;

import io.vrap.rmf.base.client.ModelBase;
import io.vrap.rmf.base.client.utils.Generated;

import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;

/**
 * QuoteLabel
 */
@Generated(value = "io.vrap.rmf.codegen.rendering.CoreCodeGenerator", comments = "https://github.com/commercetools/rmf-codegen")
public class QuoteLabelImpl implements QuoteLabel, ModelBase {

    private String type;

    private String key;

    private com.commercetools.history.models.common.Reference customer;

    private com.commercetools.history.models.common.Reference stagedQuote;

    private com.commercetools.history.models.common.Reference quoteRequest;

    /**
     * create instance with all properties
     */
    @JsonCreator
    QuoteLabelImpl(@JsonProperty("key") final String key,
            @JsonProperty("customer") final com.commercetools.history.models.common.Reference customer,
            @JsonProperty("stagedQuote") final com.commercetools.history.models.common.Reference stagedQuote,
            @JsonProperty("quoteRequest") final com.commercetools.history.models.common.Reference quoteRequest) {
        this.key = key;
        this.customer = customer;
        this.stagedQuote = stagedQuote;
        this.quoteRequest = quoteRequest;
        this.type = QUOTE_LABEL;
    }

    /**
     * create empty instance
     */
    public QuoteLabelImpl() {
        this.type = QUOTE_LABEL;
    }

    /**
     *
     */

    public String getType() {
        return this.type;
    }

    /**
     *  

User-defined unique identifier of the Quote.

*/ public String getKey() { return this.key; } /** *

The Buyer who requested the Quote.

*/ public com.commercetools.history.models.common.Reference getCustomer() { return this.customer; } /** *

Staged Quote related to the Quote.

*/ public com.commercetools.history.models.common.Reference getStagedQuote() { return this.stagedQuote; } /** *

Quote Request related to the Quote.

*/ public com.commercetools.history.models.common.Reference getQuoteRequest() { return this.quoteRequest; } public void setKey(final String key) { this.key = key; } public void setCustomer(final com.commercetools.history.models.common.Reference customer) { this.customer = customer; } public void setStagedQuote(final com.commercetools.history.models.common.Reference stagedQuote) { this.stagedQuote = stagedQuote; } public void setQuoteRequest(final com.commercetools.history.models.common.Reference quoteRequest) { this.quoteRequest = quoteRequest; } @Override public boolean equals(Object o) { if (this == o) return true; if (o == null || getClass() != o.getClass()) return false; QuoteLabelImpl that = (QuoteLabelImpl) o; return new EqualsBuilder().append(type, that.type) .append(key, that.key) .append(customer, that.customer) .append(stagedQuote, that.stagedQuote) .append(quoteRequest, that.quoteRequest) .append(type, that.type) .append(key, that.key) .append(customer, that.customer) .append(stagedQuote, that.stagedQuote) .append(quoteRequest, that.quoteRequest) .isEquals(); } @Override public int hashCode() { return new HashCodeBuilder(17, 37).append(type) .append(key) .append(customer) .append(stagedQuote) .append(quoteRequest) .toHashCode(); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy