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

com.commercetools.history.models.change_value.AssetChangeValueImpl Maven / Gradle / Ivy

There is a newer version: 17.15.1
Show newest version

package com.commercetools.history.models.change_value;

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;

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

    private String id;

    private com.commercetools.history.models.common.LocalizedString name;

    /**
     * create instance with all properties
     */
    @JsonCreator
    AssetChangeValueImpl(@JsonProperty("id") final String id,
            @JsonProperty("name") final com.commercetools.history.models.common.LocalizedString name) {
        this.id = id;
        this.name = name;
    }

    /**
     * create empty instance
     */
    public AssetChangeValueImpl() {
    }

    /**
     *  

id of the Asset.

*/ public String getId() { return this.id; } /** *

Name of the Asset.

*/ public com.commercetools.history.models.common.LocalizedString getName() { return this.name; } public void setId(final String id) { this.id = id; } public void setName(final com.commercetools.history.models.common.LocalizedString name) { this.name = name; } @Override public boolean equals(Object o) { if (this == o) return true; if (o == null || getClass() != o.getClass()) return false; AssetChangeValueImpl that = (AssetChangeValueImpl) o; return new EqualsBuilder().append(id, that.id) .append(name, that.name) .append(id, that.id) .append(name, that.name) .isEquals(); } @Override public int hashCode() { return new HashCodeBuilder(17, 37).append(id).append(name).toHashCode(); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy