Method
create_buy_order
(
self,
*,
market_hash_name: str,
max_price: int,
quantity: int
)
Source from the content-addressed store, hash-verified
| 426 | return response |
| 427 | |
| 428 | async def create_buy_order( |
| 429 | self, |
| 430 | *, |
| 431 | market_hash_name: str, |
| 432 | max_price: int, |
| 433 | quantity: int |
| 434 | ) -> Optional[dict]: |
| 435 | parameters = "/buy-orders" |
| 436 | method = "POST" |
| 437 | json_data = { |
| 438 | "market_hash_name": market_hash_name, |
| 439 | "max_price": max_price, |
| 440 | "quantity": quantity |
| 441 | } |
| 442 | response = await self._request(method=method, parameters=parameters, json_data=json_data) |
| 443 | return response |
| 444 | |
| 445 | async def make_offer( |
| 446 | self, *, listing_id: int, price: int |
Callers
nothing calls this directly
Tested by
no test coverage detected