2022-10-21 17:16:00 +02:00
|
|
|
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
|
|
|
|
|
|
|
[Home](./index.md) > [bitburner](./bitburner.md) > [WarehouseAPI](./bitburner.warehouseapi.md) > [sellProduct](./bitburner.warehouseapi.sellproduct.md)
|
|
|
|
|
|
|
|
## WarehouseAPI.sellProduct() method
|
|
|
|
|
|
|
|
Set product sell data.
|
|
|
|
|
2023-02-11 19:18:50 +01:00
|
|
|
**Signature:**
|
2022-10-21 17:16:00 +02:00
|
|
|
|
|
|
|
```typescript
|
|
|
|
sellProduct(
|
|
|
|
divisionName: string,
|
2022-12-30 02:28:53 +01:00
|
|
|
city: CityName | `${CityName}`,
|
2022-10-21 17:16:00 +02:00
|
|
|
productName: string,
|
|
|
|
amt: string,
|
|
|
|
price: string,
|
|
|
|
all: boolean,
|
|
|
|
): void;
|
|
|
|
```
|
|
|
|
|
|
|
|
## Parameters
|
|
|
|
|
|
|
|
| Parameter | Type | Description |
|
|
|
|
| --- | --- | --- |
|
|
|
|
| divisionName | string | Name of the division |
|
2022-12-30 02:28:53 +01:00
|
|
|
| city | [CityName](./bitburner.cityname.md) \| \`${[CityName](./bitburner.cityname.md)<!-- -->}\` | Name of the city |
|
2022-10-21 17:16:00 +02:00
|
|
|
| productName | string | Name of the product |
|
|
|
|
| amt | string | Amount to sell, can be "MAX" |
|
|
|
|
| price | string | Price to sell, can be "MP" |
|
2023-09-13 01:49:51 +02:00
|
|
|
| all | boolean | Set sell amount and price in all cities |
|
2022-10-21 17:16:00 +02:00
|
|
|
|
2023-02-11 19:18:50 +01:00
|
|
|
**Returns:**
|
2022-10-21 17:16:00 +02:00
|
|
|
|
|
|
|
void
|
|
|
|
|
2024-08-16 11:02:23 +02:00
|
|
|
## Remarks
|
|
|
|
|
|
|
|
RAM cost: 20 GB
|
|
|
|
|