# AssetType

The type of the asset in this order, which must be one of the following:
 EQUITY, MUTUAL_FUND, and FIXED_INCOME.

## Example Usage

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

let value: AssetType = AssetType.Equity;
```

## Values

This is an open enum. Unrecognized values will be captured as the `Unrecognized<string>` branded type.

| Name                   | Value                  |
| ---------------------- | ---------------------- |
| `Equity`               | EQUITY                 |
| `FixedIncome`          | FIXED_INCOME           |
| `MutualFund`           | MUTUAL_FUND            |
| `EventContract`        | EVENT_CONTRACT         |
| -                      | `Unrecognized<string>` |