public class BankingLoanAccount extends Object
| Modifier and Type | Class and Description |
|---|---|
static class |
BankingLoanAccount.RepaymentType |
| Constructor and Description |
|---|
BankingLoanAccount() |
| Modifier and Type | Method and Description |
|---|---|
boolean |
equals(Object o) |
java.time.LocalDate |
getLoanEndDate()
Date that the loan is due to be repaid in full
|
String |
getMaxRedraw()
Maximum amount of funds that can be redrawn.
|
String |
getMaxRedrawCurrency()
If absent assumes AUD
|
String |
getMinInstalmentAmount()
Minimum amount of next instalment
|
String |
getMinInstalmentCurrency()
If absent assumes AUD
|
String |
getMinRedraw()
Minimum redraw amount
|
String |
getMinRedrawCurrency()
If absent assumes AUD
|
java.time.LocalDate |
getNextInstalmentDate()
Next date that an instalment is required
|
Boolean |
getOffsetAccountEnabled()
Set to true if one or more offset accounts are configured for this loan account
|
List<String> |
getOffsetAccountIds()
The accountIDs of the configured offset accounts attached to this loan.
|
String |
getOriginalLoanAmount()
Optional original loan value
|
String |
getOriginalLoanCurrency()
If absent assumes AUD
|
java.time.LocalDate |
getOriginalStartDate()
Optional original start date for the loan
|
String |
getRepaymentFrequency()
The expected or required repayment frequency.
|
BankingLoanAccount.RepaymentType |
getRepaymentType()
Get repaymentType
|
int |
hashCode() |
void |
setLoanEndDate(java.time.LocalDate loanEndDate) |
void |
setMaxRedraw(String maxRedraw) |
void |
setMaxRedrawCurrency(String maxRedrawCurrency) |
void |
setMinInstalmentAmount(String minInstalmentAmount) |
void |
setMinInstalmentCurrency(String minInstalmentCurrency) |
void |
setMinRedraw(String minRedraw) |
void |
setMinRedrawCurrency(String minRedrawCurrency) |
void |
setNextInstalmentDate(java.time.LocalDate nextInstalmentDate) |
void |
setOffsetAccountEnabled(Boolean offsetAccountEnabled) |
void |
setOffsetAccountIds(List<String> offsetAccountIds) |
void |
setOriginalLoanAmount(String originalLoanAmount) |
void |
setOriginalLoanCurrency(String originalLoanCurrency) |
void |
setOriginalStartDate(java.time.LocalDate originalStartDate) |
void |
setRepaymentFrequency(String repaymentFrequency) |
void |
setRepaymentType(BankingLoanAccount.RepaymentType repaymentType) |
String |
toString() |
public java.time.LocalDate getLoanEndDate()
public void setLoanEndDate(java.time.LocalDate loanEndDate)
public String getMaxRedraw()
public void setMaxRedraw(String maxRedraw)
public String getMaxRedrawCurrency()
public void setMaxRedrawCurrency(String maxRedrawCurrency)
public String getMinInstalmentAmount()
public void setMinInstalmentAmount(String minInstalmentAmount)
public String getMinInstalmentCurrency()
public void setMinInstalmentCurrency(String minInstalmentCurrency)
public String getMinRedraw()
public void setMinRedraw(String minRedraw)
public String getMinRedrawCurrency()
public void setMinRedrawCurrency(String minRedrawCurrency)
public java.time.LocalDate getNextInstalmentDate()
public void setNextInstalmentDate(java.time.LocalDate nextInstalmentDate)
public Boolean getOffsetAccountEnabled()
public void setOffsetAccountEnabled(Boolean offsetAccountEnabled)
public List<String> getOffsetAccountIds()
public String getOriginalLoanAmount()
public void setOriginalLoanAmount(String originalLoanAmount)
public String getOriginalLoanCurrency()
public void setOriginalLoanCurrency(String originalLoanCurrency)
public java.time.LocalDate getOriginalStartDate()
public void setOriginalStartDate(java.time.LocalDate originalStartDate)
public String getRepaymentFrequency()
public void setRepaymentFrequency(String repaymentFrequency)
public BankingLoanAccount.RepaymentType getRepaymentType()
public void setRepaymentType(BankingLoanAccount.RepaymentType repaymentType)
Copyright © 2019. All rights reserved.