(self, entry)
| 3654 | return entry |
| 3655 | |
| 3656 | def parse_balance_helper(self, entry): |
| 3657 | account = self.account() |
| 3658 | account['used'] = self.safe_string(entry, 'locked') |
| 3659 | account['free'] = self.safe_string(entry, 'free') |
| 3660 | interest = self.safe_string(entry, 'interest') |
| 3661 | debt = self.safe_string(entry, 'borrowed') |
| 3662 | account['debt'] = Precise.string_add(debt, interest) |
| 3663 | return account |
| 3664 | |
| 3665 | def parse_balance_custom(self, response, type=None, marginMode=None, isPortfolioMargin=False) -> Balances: |
| 3666 | result = { |
no test coverage detected