(self, *, trade_ids: list[str])
| 469 | return response |
| 470 | |
| 471 | async def accept_sale(self, *, trade_ids: list[str]): |
| 472 | parameters = "trades/bulk/accept" |
| 473 | method = "POST" |
| 474 | |
| 475 | json_data = { |
| 476 | "trade_ids": trade_ids |
| 477 | } |
| 478 | |
| 479 | response = await self._request(method=method, parameters=parameters, json_data=json_data) |
| 480 | return response |
| 481 | |
| 482 | async def update_listing_price(self, *, listing_id: int, price: int): |
| 483 | parameters = f"/listings/{listing_id}" |