# Employment

Object containing information pertaining to a investor's current employer including the name, address, and duration of employment.

## Example Usage

```typescript
import { Employment } from "@apexfintechsolutions/ascend-sdk/models/components";

let value: Employment = {};
```

## Fields

| Field                                                                                                                                                                                                                                                                                                     | Type                                                                                                                                                                                                                                                                                                      | Required                                                                                                                                                                                                                                                                                                  | Description                                                                                                                                                                                                                                                                                               | Example                                                                                                                                                                                                                                                                                                   |
| --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `employer`                                                                                                                                                                                                                                                                                                | *string*                                                                                                                                                                                                                                                                                                  | :heavy_minus_sign:                                                                                                                                                                                                                                                                                        | The business name of an investor's employer.                                                                                                                                                                                                                                                              | Apex Fintech Solutions                                                                                                                                                                                                                                                                                    |
| `employerAddress`                                                                                                                                                                                                                                                                                         | [components.EmployerAddress](../../models/components/employeraddress.md)                                                                                                                                                                                                                                  | :heavy_minus_sign:                                                                                                                                                                                                                                                                                        | The data structure containing attributes describing the location of an investor's employer. If input, the required fields within the `employer_address` object include:<br/> - `administrative_area`<br/> - `region_code` - 2 character CLDR Code<br/> - `postal_code`<br/> - `locality`<br/> - `address_lines` - max 5 lines |                                                                                                                                                                                                                                                                                                           |
| `employmentId`                                                                                                                                                                                                                                                                                            | *string*                                                                                                                                                                                                                                                                                                  | :heavy_minus_sign:                                                                                                                                                                                                                                                                                        | System-generated GUID representing the employment record of a natural person                                                                                                                                                                                                                              | 45b39d95-6650-4952-a5c4-cab1858312f1                                                                                                                                                                                                                                                                      |
| `employmentStatus`                                                                                                                                                                                                                                                                                        | [components.LegalNaturalPersonEmploymentStatus](../../models/components/legalnaturalpersonemploymentstatus.md)                                                                                                                                                                                            | :heavy_minus_sign:                                                                                                                                                                                                                                                                                        | Classifies in what capacity (or if) the underlying natural person holds a job                                                                                                                                                                                                                             | EMPLOYED                                                                                                                                                                                                                                                                                                  |
| `occupation`                                                                                                                                                                                                                                                                                              | *string*                                                                                                                                                                                                                                                                                                  | :heavy_minus_sign:                                                                                                                                                                                                                                                                                        | **Field Dependencies:**<br/><br/>Required if `employment_status` is one of:<br/>  - `EMPLOYED`<br/>  - `SELF_EMPLOYED`                                                                                                                                                                                    | Software Engineer                                                                                                                                                                                                                                                                                         |
| `startYear`                                                                                                                                                                                                                                                                                               | *number*                                                                                                                                                                                                                                                                                                  | :heavy_minus_sign:                                                                                                                                                                                                                                                                                        | **Field Dependencies:**<br/><br/>Must be empty if `employment_status` is ___not___ one of:<br/>  - `EMPLOYED`<br/>  - `SELF_EMPLOYED`                                                                                                                                                                     | 2019                                                                                                                                                                                                                                                                                                      |