Getting Loan Information
Last updated
/**
* @notice Calculates the minimum payment amount due for a loan.
* @param _bidId The id of the loan bid to get the payment amount for.
*/
function calculateAmountDue(uint256 _bidId)/**
* @notice Returns the next due date for a loan payment.
* @param _bidId The id of the loan bid.
*/
function calculateNextDueDate(uint256 _bidId)/**
* @notice Checks to see if a borrower is delinquent.
* @param _bidId The id of the loan bid to check for.
*/
function isPaymentLate(uint256 _bidId)