# RetrieveFixedIncomeMarksResponseAssetMark

Mark data for a specific asset

## Example Usage

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

let value: RetrieveFixedIncomeMarksResponseAssetMark = {};
```

## Fields

| Field                                                                                                                                                                                                                                               | Type                                                                                                                                                                                                                                                | Required                                                                                                                                                                                                                                            | Description                                                                                                                                                                                                                                         | Example                                                                                                                                                                                                                                             |
| --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `accruedInterestAmount`                                                                                                                                                                                                                             | [components.RetrieveFixedIncomeMarksResponseAssetMarkAccruedInterestAmount](../../models/components/retrievefixedincomemarksresponseassetmarkaccruedinterestamount.md)                                                                              | :heavy_minus_sign:                                                                                                                                                                                                                                  | The amount of accrued interest estimated to be exchanged given the requested quantity. Measured in a USD value with 2-decimal places of precision.                                                                                                  | {<br/>"value": "4.99"<br/>}                                                                                                                                                                                                                         |
| `assetId`                                                                                                                                                                                                                                           | *string*                                                                                                                                                                                                                                            | :heavy_minus_sign:                                                                                                                                                                                                                                  | Apex Asset ID for this asset.                                                                                                                                                                                                                       | 22091                                                                                                                                                                                                                                               |
| `identifier`                                                                                                                                                                                                                                        | *string*                                                                                                                                                                                                                                            | :heavy_minus_sign:                                                                                                                                                                                                                                  | Identifier of the asset (of the type specified in `identifier_type`).                                                                                                                                                                               | 037833100                                                                                                                                                                                                                                           |
| `identifierType`                                                                                                                                                                                                                                    | [components.RetrieveFixedIncomeMarksResponseAssetMarkIdentifierType](../../models/components/retrievefixedincomemarksresponseassetmarkidentifiertype.md)                                                                                            | :heavy_minus_sign:                                                                                                                                                                                                                                  | The identifier type of the asset being sought. This will be the same value as what was sent on the request.                                                                                                                                         | CUSIP                                                                                                                                                                                                                                               |
| `markAbsenceReason`                                                                                                                                                                                                                                 | [components.MarkAbsenceReason](../../models/components/markabsencereason.md)                                                                                                                                                                        | :heavy_minus_sign:                                                                                                                                                                                                                                  | When marks are found and returned, this will be unspecified. If the asset was found, but no pricing data is returned, then: this will denote the reason, the marks[] list will be empty, and the accrued_interest_amount will not be present.       | NOT_PRICED                                                                                                                                                                                                                                          |
| `markGenerationTime`                                                                                                                                                                                                                                | [Date](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date)                                                                                                                                                       | :heavy_minus_sign:                                                                                                                                                                                                                                  | The time this mark data was generated                                                                                                                                                                                                               | {"seconds": 171442739, "nanos": 61400000}                                                                                                                                                                                                           |
| `marks`                                                                                                                                                                                                                                             | [components.MarkPrice](../../models/components/markprice.md)[]                                                                                                                                                                                      | :heavy_minus_sign:                                                                                                                                                                                                                                  | The set of marks available for this asset. If this is non-empty, then it will always contain a PERCENTAGE_OF_PAR typed price in it. Yield prices may not always be available, but never be present without a percentage of par value also returned. | [<br/>{<br/>"price": {<br/>"value": "97.10"<br/>},<br/>"type": "PERCENTAGE_OF_PAR"<br/>}<br/>]                                                                                                                                                      |