Method
update_listing_price
(self, *, listing_id: int, price: int)
Source from the content-addressed store, hash-verified
| 480 | return response |
| 481 | |
| 482 | async def update_listing_price(self, *, listing_id: int, price: int): |
| 483 | parameters = f"/listings/{listing_id}" |
| 484 | method = "PATCH" |
| 485 | |
| 486 | json_data = { |
| 487 | "price": price |
| 488 | } |
| 489 | response = await self._request(method=method, parameters=parameters, json_data=json_data) |
| 490 | return response |
Callers
nothing calls this directly
Tested by
no test coverage detected