public static interface MoneyLibrary.DebtItem
| Modifier and Type | Method | Description | 
|---|---|---|
| double | amt() | The amount, in base currency value, that is currently
 owed. | 
| java.lang.String | debtor() | Gets the name of the player that owes the money
 Some day this should be expanded to support the
 names of clans. | 
| long | due() | The real-life due date of the loan, after which the
 collateral (property) is declared unowned. | 
| double | interest() | Gets the percentage of the current amount due that is
 added back into the total every mud-month. | 
| java.lang.String | owedTo() | Gets who the money is owed to, typically a bank chain
 name. | 
| java.lang.String | reason() | Gets a short friendly description of the nature of the debt,
 usually something like "bank loan". | 
| void | setAmt(double amt) | Alters the amount, in base currency value, that is currently
 owed. | 
java.lang.String debtor()
java.lang.String owedTo()
double amt()
void setAmt(double amt)
amt - The amount, in base currency value, owedlong due()
double interest()
java.lang.String reason()