public class BankTransfer extends Object
| Constructor and Description |
|---|
BankTransfer() |
| Modifier and Type | Method and Description |
|---|---|
BankTransfer |
addValidationErrorsItem(ValidationError validationErrorsItem) |
BankTransfer |
amount(Double amount) |
BankTransfer |
date(String date) |
boolean |
equals(Object o) |
BankTransfer |
fromBankAccount(Account fromBankAccount) |
Double |
getAmount()
amount of the transaction
|
UUID |
getBankTransferID()
The identifier of the Bank Transfer
|
String |
getCreatedDateUTC()
UTC timestamp of creation date of bank transfer
|
org.threeten.bp.OffsetDateTime |
getCreatedDateUTCAsDate() |
Double |
getCurrencyRate()
The currency rate
|
String |
getDate()
The date of the Transfer YYYY-MM-DD
|
org.threeten.bp.LocalDate |
getDateAsDate() |
Account |
getFromBankAccount()
Get fromBankAccount
|
UUID |
getFromBankTransactionID()
The Bank Transaction ID for the source account
|
Boolean |
getHasAttachments()
Boolean to indicate if a Bank Transfer has an attachment
|
Account |
getToBankAccount()
Get toBankAccount
|
UUID |
getToBankTransactionID()
The Bank Transaction ID for the destination account
|
List<ValidationError> |
getValidationErrors()
Displays array of validation error messages from the API
|
int |
hashCode() |
void |
setAmount(Double amount) |
void |
setDate(org.threeten.bp.LocalDate date) |
void |
setDate(String date) |
void |
setFromBankAccount(Account fromBankAccount) |
void |
setToBankAccount(Account toBankAccount) |
void |
setValidationErrors(List<ValidationError> validationErrors) |
BankTransfer |
toBankAccount(Account toBankAccount) |
String |
toString() |
BankTransfer |
validationErrors(List<ValidationError> validationErrors) |
public BankTransfer fromBankAccount(Account fromBankAccount)
public Account getFromBankAccount()
public void setFromBankAccount(Account fromBankAccount)
public BankTransfer toBankAccount(Account toBankAccount)
public Account getToBankAccount()
public void setToBankAccount(Account toBankAccount)
public BankTransfer amount(Double amount)
public Double getAmount()
public void setAmount(Double amount)
public BankTransfer date(String date)
public String getDate()
public org.threeten.bp.LocalDate getDateAsDate()
public void setDate(String date)
public void setDate(org.threeten.bp.LocalDate date)
public UUID getBankTransferID()
public Double getCurrencyRate()
public UUID getFromBankTransactionID()
public UUID getToBankTransactionID()
public Boolean getHasAttachments()
public String getCreatedDateUTC()
public org.threeten.bp.OffsetDateTime getCreatedDateUTCAsDate()
public BankTransfer validationErrors(List<ValidationError> validationErrors)
public BankTransfer addValidationErrorsItem(ValidationError validationErrorsItem)
public List<ValidationError> getValidationErrors()
public void setValidationErrors(List<ValidationError> validationErrors)
Copyright © 2020. All rights reserved.