io.electrum.vas.model.Transaction Maven / Gradle / Ivy
package io.electrum.vas.model;
import com.fasterxml.jackson.annotation.JsonProperty;
import io.electrum.vas.Utils;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import org.joda.time.DateTime;
import javax.validation.constraints.NotNull;
import java.util.ArrayList;
import java.util.List;
import java.util.Objects;
import java.util.UUID;
/**
* The data required in all value added service transactions.
**/
@ApiModel(description = "The data required in all value added service transactions.")
public class Transaction {
protected UUID id = null;
protected DateTime time = null;
protected Originator originator = null;
protected Institution client = null;
protected Institution settlementEntity = null;
protected Institution receiver = null;
protected List thirdPartyIdentifiers = new ArrayList();
/**
* The randomly generated UUID identifying this transaction, as defined for a variant 4 UUID in [RFC
* 4122](https://tools.ietf.org/html/rfc4122)
**/
public Transaction id(UUID id) {
this.id = id;
return this;
}
@ApiModelProperty(required = true, value = "The randomly generated UUID identifying this transaction, as defined for a variant 4 UUID in [RFC 4122](https://tools.ietf.org/html/rfc4122)")
@JsonProperty("id")
@NotNull
public UUID getId() {
return id;
}
public void setId(UUID id) {
this.id = id;
}
/**
* The date and time of the message in UTC, as recorded by the sender. The format shall be as defined for date-time
* in [RFC 3339 section 5.6](https://tools.ietf.org/html/rfc3339#section-5.6). It is recommended that the optional
* time-secfrac be included up to millisecond precision
**/
public Transaction time(DateTime time) {
this.time = time;
return this;
}
@ApiModelProperty(required = true, value = "The date and time of the message as recorded by the sender. The format shall be as defined for date-time in [RFC 3339 section 5.6](https://tools.ietf.org/html/rfc3339#section-5.6). It is recommended that the optional time-secfrac be included up to millisecond precision")
@JsonProperty("time")
@NotNull
public DateTime getTime() {
return time;
}
public void setTime(DateTime time) {
this.time = time;
}
/**
* Data relating to the originator of the transaction
**/
public Transaction originator(Originator originator) {
this.originator = originator;
return this;
}
@ApiModelProperty(required = true, value = "Data relating to the originator of the transaction")
@JsonProperty("originator")
@NotNull
public Originator getOriginator() {
return originator;
}
public void setOriginator(Originator originator) {
this.originator = originator;
}
/**
* Data relating to the sender of BasicRequest.
**/
public Transaction client(Institution client) {
this.client = client;
return this;
}
@ApiModelProperty(required = true, value = "Data relating to the sender of Transaction.")
@JsonProperty("client")
@NotNull
public Institution getClient() {
return client;
}
public void setClient(Institution client) {
this.client = client;
}
/**
* Data relating to the entity with whom the Merchant will settle the transaction.
**/
public Transaction settlementEntity(Institution settlementEntity) {
this.settlementEntity = settlementEntity;
return this;
}
@ApiModelProperty(value = "Data relating to the entity with whom the Merchant will settle the transaction.")
@JsonProperty("settlementEntity")
public Institution getSettlementEntity() {
return settlementEntity;
}
public void setSettlementEntity(Institution settlementEntity) {
this.settlementEntity = settlementEntity;
}
/**
* Data relating to the entity which ultimately processes the request.
**/
public Transaction receiver(Institution receiver) {
this.receiver = receiver;
return this;
}
@ApiModelProperty(value = "Data relating to the entity which ultimately processes the request.")
@JsonProperty("receiver")
public Institution getReceiver() {
return receiver;
}
public void setReceiver(Institution receiver) {
this.receiver = receiver;
}
/**
* An array of identifiers which each identify the transaction within each entity's system.
**/
public Transaction thirdPartyIdentifiers(List transactionIdentifiers) {
this.thirdPartyIdentifiers = transactionIdentifiers;
return this;
}
@ApiModelProperty(required = true, value = "An array of identifiers which each identify the transaction within each entity's system.")
@JsonProperty("thirdPartyIdentifiers")
@NotNull
public List getThirdPartyIdentifiers() {
return thirdPartyIdentifiers;
}
public void setThirdPartyIdentifiers(List transactionIdentifiers) {
this.thirdPartyIdentifiers = transactionIdentifiers;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
Transaction vasRequest = (Transaction) o;
return Objects.equals(id, vasRequest.id);
}
@Override
public int hashCode() {
return Objects.hash(id);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class Transaction {\n");
sb.append(" id: ").append(Utils.toIndentedString(id)).append("\n");
sb.append(" time: ").append(Utils.toIndentedString(time)).append("\n");
sb.append(" originator: ").append(Utils.toIndentedString(originator)).append("\n");
sb.append(" client: ").append(Utils.toIndentedString(client)).append("\n");
sb.append(" settlementEntity: ").append(Utils.toIndentedString(settlementEntity)).append("\n");
sb.append(" receiver: ").append(Utils.toIndentedString(receiver)).append("\n");
sb.append(" thirdPartyIdentifiers: ").append(Utils.toIndentedString(thirdPartyIdentifiers)).append("\n");
sb.append("}");
return sb.toString();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy