public class BankTransfer extends Object
| Constructor and Description |
|---|
BankTransfer() |
| Modifier and Type | Method and Description |
|---|---|
BankTransfer |
addValidationErrorsItem(ValidationError validationErrorsItem) |
BankTransfer |
amount(String amount) |
BankTransfer |
date(org.threeten.bp.LocalDate date) |
boolean |
equals(Object o) |
BankTransfer |
fromBankAccount(Account fromBankAccount) |
String |
getAmount()
amount of the transaction
|
UUID |
getBankTransferID()
The identifier of the Bank Transfer
|
org.threeten.bp.OffsetDateTime |
getCreatedDateUTC()
UTC timestamp of creation date of bank transfer
|
Double |
getCurrencyRate()
The currency rate
|
org.threeten.bp.LocalDate |
getDate()
The date of the Transfer YYYY-MM-DD
|
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(String amount) |
void |
setDate(org.threeten.bp.LocalDate 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(String amount)
public String getAmount()
public void setAmount(String amount)
public BankTransfer date(org.threeten.bp.LocalDate date)
public org.threeten.bp.LocalDate getDate()
public void setDate(org.threeten.bp.LocalDate date)
public UUID getBankTransferID()
public Double getCurrencyRate()
public UUID getFromBankTransactionID()
public UUID getToBankTransactionID()
public Boolean getHasAttachments()
public org.threeten.bp.OffsetDateTime getCreatedDateUTC()
public BankTransfer validationErrors(List<ValidationError> validationErrors)
public BankTransfer addValidationErrorsItem(ValidationError validationErrorsItem)
public List<ValidationError> getValidationErrors()
public void setValidationErrors(List<ValidationError> validationErrors)
Copyright © 2019. All rights reserved.