LoanStatus
The current status of a loan.
enum LoanStatus {
READY
ACTIVE
REVOKED
RETURNED
CANCELLED
EXPIRED
}
Values
LoanStatus.READY
The loan has been created but still not activated by the end user.
LoanStatus.ACTIVE
The loan has been activated by the end user and is still valid.
LoanStatus.REVOKED
The loan has been terminated by its issuer.
LoanStatus.RETURNED
The loan has been terminated by the end user.
LoanStatus.CANCELLED
The loan has been terminated without ever being activated.
LoanStatus.EXPIRED
The loan has naturally terminated given its expiration date.
Member of
Loan
object ● LoanFilter
input