# Asset

Asset is the Apex representation of a security

## Example Usage

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

let value: Asset = {};
```

## Fields

| Field                                                                                                        | Type                                                                                                         | Required                                                                                                     | Description                                                                                                  | Example                                                                                                      |
| ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ |
| `altInvestment`                                                                                              | [components.AltInvestment](../../models/components/altinvestment.md)                                         | :heavy_minus_sign:                                                                                           | AltInvestment specific asset details                                                                         |                                                                                                              |
| `assetId`                                                                                                    | *string*                                                                                                     | :heavy_minus_sign:                                                                                           | Apex internal identifier assigned upon entry to every security.                                              | 8395                                                                                                         |
| `currency`                                                                                                   | [components.Currency](../../models/components/currency.md)                                                   | :heavy_minus_sign:                                                                                           | Currency specific asset details                                                                              |                                                                                                              |
| `cusip`                                                                                                      | *string*                                                                                                     | :heavy_minus_sign:                                                                                           | Identifier assigned to a security by the CUSIP Service Bureau of Standard & Poor’s Corporation               | 855244109                                                                                                    |
| `description`                                                                                                | *string*                                                                                                     | :heavy_minus_sign:                                                                                           | Name of the issuer of a security and additional descriptive information about the particular issue           | Starbucks Corp                                                                                               |
| `equity`                                                                                                     | [components.Equity](../../models/components/equity.md)                                                       | :heavy_minus_sign:                                                                                           | Equity specific asset details                                                                                |                                                                                                              |
| `fixedIncome`                                                                                                | [components.FixedIncome](../../models/components/fixedincome.md)                                             | :heavy_minus_sign:                                                                                           | FixedIncome specific asset details                                                                           |                                                                                                              |
| `index`                                                                                                      | [components.Index](../../models/components/index.md)                                                         | :heavy_minus_sign:                                                                                           | Index specific asset details                                                                                 |                                                                                                              |
| `isin`                                                                                                       | *string*                                                                                                     | :heavy_minus_sign:                                                                                           | isin is the International Securities Identification Number                                                   | US123456789                                                                                                  |
| `issuingRegionCode`                                                                                          | *string*                                                                                                     | :heavy_minus_sign:                                                                                           | A string attribute denoting the country of issuance or where the asset is trading.                           | US                                                                                                           |
| `mutualFund`                                                                                                 | [components.MutualFund](../../models/components/mutualfund.md)                                               | :heavy_minus_sign:                                                                                           | MutualFund specific asset details                                                                            |                                                                                                              |
| `name`                                                                                                       | *string*                                                                                                     | :heavy_minus_sign:                                                                                           | assets/{asset_id}                                                                                            | assets/8395                                                                                                  |
| `option`                                                                                                     | [components.Option](../../models/components/option.md)                                                       | :heavy_minus_sign:                                                                                           | Option specific asset details                                                                                |                                                                                                              |
| `originatingRegionCode`                                                                                      | *string*                                                                                                     | :heavy_minus_sign:                                                                                           | ISO code identifying the region in which the entity was incorporated                                         | US                                                                                                           |
| `symbol`                                                                                                     | *string*                                                                                                     | :heavy_minus_sign:                                                                                           | An arrangement of characters—usually letters and or numbers — usually representing securities on an exchange | SBUX                                                                                                         |
| `type`                                                                                                       | [components.AssetType1](../../models/components/assettype1.md)                                               | :heavy_minus_sign:                                                                                           | The type or category of the asset                                                                            | EQUITY                                                                                                       |
| `usable`                                                                                                     | *boolean*                                                                                                    | :heavy_minus_sign:                                                                                           | A usable asset is active in its respective market and can be traded and/or transferred                       | true                                                                                                         |