(self, **params)
| 1258 | ) |
| 1259 | |
| 1260 | async def create_margin_loan(self, **params): |
| 1261 | return await self._request_margin_api( |
| 1262 | "post", "margin/loan", signed=True, data=params |
| 1263 | ) |
| 1264 | |
| 1265 | create_margin_loan.__doc__ = Client.create_margin_loan.__doc__ |
| 1266 |
nothing calls this directly
no test coverage detected