Return an Amount view of the current balance.
(self)
| 2060 | |
| 2061 | @hybrid.hybrid_property |
| 2062 | def balance(self): |
| 2063 | """Return an Amount view of the current balance.""" |
| 2064 | return Amount(self._balance, "usd") |
| 2065 | |
| 2066 | @balance.setter |
| 2067 | def balance(self, value): |
nothing calls this directly
no test coverage detected