Getting Loan Information
Last updated
/**
* @notice Gets the metadataURI for a bidId.
* @param _bidId The id of the bid to return the metadataURI for
* @return metadataURI_ The metadataURI for the bid, as a string.
*/
function getMetadataURI(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)/**
* @notice Returns the last repaid timestamp for a loan.
* @param _bidId The id of the loan bid to get the timestamp for.
*/
function lastRepaidTimestamp(uint256 _bidId)/**
* @notice Checks to see if a borrower is delinquent.
* @param _bidId The id of the loan bid to check for.
*/
function isLoanDefaulted(uint256 _bidId)/**
* @notice Function for users to liquidate a defaulted loan.
* @param _bidId The id of the loan to make the payment towards.
*/
function liquidateLoanFull(uint256 _bidId)