001
002package com.commercetools.api.models.me;
003
004import java.time.*;
005import java.util.*;
006
007import com.fasterxml.jackson.annotation.JsonCreator;
008import com.fasterxml.jackson.annotation.JsonProperty;
009import com.fasterxml.jackson.databind.annotation.*;
010
011import io.vrap.rmf.base.client.ModelBase;
012import io.vrap.rmf.base.client.utils.Generated;
013
014import org.apache.commons.lang3.builder.EqualsBuilder;
015import org.apache.commons.lang3.builder.HashCodeBuilder;
016
017/**
018 * MyCartSetCustomFieldAction
019 */
020@Generated(value = "io.vrap.rmf.codegen.rendering.CoreCodeGenerator", comments = "https://github.com/commercetools/rmf-codegen")
021public class MyCartSetCustomFieldActionImpl implements MyCartSetCustomFieldAction, ModelBase {
022
023    private String action;
024
025    private String name;
026
027    private java.lang.Object value;
028
029    /**
030     * create instance with all properties
031     */
032    @JsonCreator
033    MyCartSetCustomFieldActionImpl(@JsonProperty("name") final String name,
034            @JsonProperty("value") final java.lang.Object value) {
035        this.name = name;
036        this.value = value;
037        this.action = SET_CUSTOM_FIELD;
038    }
039
040    /**
041     * create empty instance
042     */
043    public MyCartSetCustomFieldActionImpl() {
044        this.action = SET_CUSTOM_FIELD;
045    }
046
047    /**
048     *
049     */
050
051    public String getAction() {
052        return this.action;
053    }
054
055    /**
056     *  <p>Name of the Custom Field.</p>
057     */
058
059    public String getName() {
060        return this.name;
061    }
062
063    /**
064     *  <p>If <code>value</code> is absent or <code>null</code>, this field will be removed if it exists. Removing a field that does not exist returns an InvalidOperation error. If <code>value</code> is provided, it is set for the field defined by <code>name</code>.</p>
065     */
066
067    public java.lang.Object getValue() {
068        return this.value;
069    }
070
071    public void setName(final String name) {
072        this.name = name;
073    }
074
075    public void setValue(final java.lang.Object value) {
076        this.value = value;
077    }
078
079    @Override
080    public boolean equals(Object o) {
081        if (this == o)
082            return true;
083
084        if (o == null || getClass() != o.getClass())
085            return false;
086
087        MyCartSetCustomFieldActionImpl that = (MyCartSetCustomFieldActionImpl) o;
088
089        return new EqualsBuilder().append(action, that.action)
090                .append(name, that.name)
091                .append(value, that.value)
092                .isEquals();
093    }
094
095    @Override
096    public int hashCode() {
097        return new HashCodeBuilder(17, 37).append(action).append(name).append(value).toHashCode();
098    }
099
100}