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

com.commercetools.history.models.common.TransactionImpl Maven / Gradle / Ivy

There is a newer version: 17.15.1
Show newest version

package com.commercetools.history.models.common;

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;

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

    private String id;

    private String timestamp;

    private com.commercetools.history.models.common.TransactionType type;

    private com.commercetools.history.models.common.Money amount;

    private String interactionId;

    private com.commercetools.history.models.common.TransactionState state;

    /**
     * create instance with all properties
     */
    @JsonCreator
    TransactionImpl(@JsonProperty("id") final String id, @JsonProperty("timestamp") final String timestamp,
            @JsonProperty("type") final com.commercetools.history.models.common.TransactionType type,
            @JsonProperty("amount") final com.commercetools.history.models.common.Money amount,
            @JsonProperty("interactionId") final String interactionId,
            @JsonProperty("state") final com.commercetools.history.models.common.TransactionState state) {
        this.id = id;
        this.timestamp = timestamp;
        this.type = type;
        this.amount = amount;
        this.interactionId = interactionId;
        this.state = state;
    }

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

    /**
     *  

Unique identifier of the Transaction.

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

Time at which the transaction took place.

*/ public String getTimestamp() { return this.timestamp; } /** * */ public com.commercetools.history.models.common.TransactionType getType() { return this.type; } /** * */ public com.commercetools.history.models.common.Money getAmount() { return this.amount; } /** *

Identifier used by the interface that manages the transaction (usually the PSP). If a matching interaction was logged in the interfaceInteractions array, the corresponding interaction should be findable with this ID.

*/ public String getInteractionId() { return this.interactionId; } /** * */ public com.commercetools.history.models.common.TransactionState getState() { return this.state; } public void setId(final String id) { this.id = id; } public void setTimestamp(final String timestamp) { this.timestamp = timestamp; } public void setType(final com.commercetools.history.models.common.TransactionType type) { this.type = type; } public void setAmount(final com.commercetools.history.models.common.Money amount) { this.amount = amount; } public void setInteractionId(final String interactionId) { this.interactionId = interactionId; } public void setState(final com.commercetools.history.models.common.TransactionState state) { this.state = state; } @Override public boolean equals(Object o) { if (this == o) return true; if (o == null || getClass() != o.getClass()) return false; TransactionImpl that = (TransactionImpl) o; return new EqualsBuilder().append(id, that.id) .append(timestamp, that.timestamp) .append(type, that.type) .append(amount, that.amount) .append(interactionId, that.interactionId) .append(state, that.state) .append(id, that.id) .append(timestamp, that.timestamp) .append(type, that.type) .append(amount, that.amount) .append(interactionId, that.interactionId) .append(state, that.state) .isEquals(); } @Override public int hashCode() { return new HashCodeBuilder(17, 37).append(id) .append(timestamp) .append(type) .append(amount) .append(interactionId) .append(state) .toHashCode(); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy