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 *  <p>Sets the default billing address from <code>addresses</code>. If the address is not currently a billing address, it is added to <code>billingAddressIds</code>. Either <code>addressId</code> or <code>addressKey</code> is required.</p>
019 */
020@Generated(value = "io.vrap.rmf.codegen.rendering.CoreCodeGenerator", comments = "https://github.com/commercetools/rmf-codegen")
021public class MyCustomerSetDefaultBillingAddressActionImpl
022        implements MyCustomerSetDefaultBillingAddressAction, ModelBase {
023
024    private String action;
025
026    private String addressId;
027
028    private String addressKey;
029
030    /**
031     * create instance with all properties
032     */
033    @JsonCreator
034    MyCustomerSetDefaultBillingAddressActionImpl(@JsonProperty("addressId") final String addressId,
035            @JsonProperty("addressKey") final String addressKey) {
036        this.addressId = addressId;
037        this.addressKey = addressKey;
038        this.action = SET_DEFAULT_BILLING_ADDRESS;
039    }
040
041    /**
042     * create empty instance
043     */
044    public MyCustomerSetDefaultBillingAddressActionImpl() {
045        this.action = SET_DEFAULT_BILLING_ADDRESS;
046    }
047
048    /**
049     *
050     */
051
052    public String getAction() {
053        return this.action;
054    }
055
056    /**
057     *  <p><code>id</code> of the Address to become the default billing address.</p>
058     */
059
060    public String getAddressId() {
061        return this.addressId;
062    }
063
064    /**
065     *  <p><code>key</code> of the Address to become the default billing address.</p>
066     */
067
068    public String getAddressKey() {
069        return this.addressKey;
070    }
071
072    public void setAddressId(final String addressId) {
073        this.addressId = addressId;
074    }
075
076    public void setAddressKey(final String addressKey) {
077        this.addressKey = addressKey;
078    }
079
080    @Override
081    public boolean equals(Object o) {
082        if (this == o)
083            return true;
084
085        if (o == null || getClass() != o.getClass())
086            return false;
087
088        MyCustomerSetDefaultBillingAddressActionImpl that = (MyCustomerSetDefaultBillingAddressActionImpl) o;
089
090        return new EqualsBuilder().append(action, that.action)
091                .append(addressId, that.addressId)
092                .append(addressKey, that.addressKey)
093                .isEquals();
094    }
095
096    @Override
097    public int hashCode() {
098        return new HashCodeBuilder(17, 37).append(action).append(addressId).append(addressKey).toHashCode();
099    }
100
101}