2021-12-09 00:19:30 +01:00
|
|
|
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
|
|
|
|
|
|
|
[Home](./index.md) > [bitburner](./bitburner.md) > [OfficeAPI](./bitburner.officeapi.md) > [assignJob](./bitburner.officeapi.assignjob.md)
|
|
|
|
|
|
|
|
## OfficeAPI.assignJob() method
|
|
|
|
|
2021-12-09 02:03:22 +01:00
|
|
|
Assign an employee to a job.
|
|
|
|
|
2021-12-09 00:19:30 +01:00
|
|
|
<b>Signature:</b>
|
|
|
|
|
|
|
|
```typescript
|
|
|
|
assignJob(divisionName: string, cityName: string, employeeName: string, job: string): Promise<void>;
|
|
|
|
```
|
|
|
|
|
|
|
|
## Parameters
|
|
|
|
|
|
|
|
| Parameter | Type | Description |
|
|
|
|
| --- | --- | --- |
|
2021-12-09 02:03:22 +01:00
|
|
|
| divisionName | string | Name of the division |
|
|
|
|
| cityName | string | Name of the city |
|
|
|
|
| employeeName | string | name of the employee |
|
|
|
|
| job | string | Name of the job. |
|
2021-12-09 00:19:30 +01:00
|
|
|
|
|
|
|
<b>Returns:</b>
|
|
|
|
|
|
|
|
Promise<void>
|
|
|
|
|
2021-12-09 02:03:22 +01:00
|
|
|
A promise that is fulfilled when the assignment is complete.
|
|
|
|
|