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

com.networknt.eventuate.test.domain.TransferDetails Maven / Gradle / Ivy

There is a newer version: 1.5.1
Show newest version
package com.networknt.eventuate.test.domain;

import java.math.BigDecimal;

public class TransferDetails {

  private String fromAccountId;
  private String toAccountId;
  private BigDecimal amount;

  private TransferDetails() {
  }

  public TransferDetails(String fromAccountId, String toAccountId, BigDecimal amount) {
    this.fromAccountId = fromAccountId;
    this.toAccountId = toAccountId;
    this.amount = amount;
  }

  public String getFromAccountId() {
    return fromAccountId;
  }

  public String getToAccountId() {
    return toAccountId;
  }

  public BigDecimal getAmount() {
    return amount;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy