# BasketTradingExecutions

Details of an individual execution within an order

## Example Usage

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

let value: BasketTradingExecutions = {};
```

## Fields

| Field                                                                                                                                                                                                                                                                                                                    | Type                                                                                                                                                                                                                                                                                                                     | Required                                                                                                                                                                                                                                                                                                                 | Description                                                                                                                                                                                                                                                                                                              | Example                                                                                                                                                                                                                                                                                                                  |
| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| `executedPrices`                                                                                                                                                                                                                                                                                                         | [components.BasketTradingExecutedPrice](../../models/components/baskettradingexecutedprice.md)[]                                                                                                                                                                                                                         | :heavy_minus_sign:                                                                                                                                                                                                                                                                                                       | The prices at which the order was executed. For Equities: there will be one price measured in PRICE_PER_UNIT (using the order currency). For Fixed Income assets: there will always be an entry measured in the PERCENTAGE_OF_PAR (100 X cost / total par value), and there may be additional entries measured in yield. | [<br/>{<br/>"price": {<br/>"value": "94.56"<br/>},<br/>"type": "PRICE_PER_UNIT"<br/>}<br/>]                                                                                                                                                                                                                              |
| `executedTime`                                                                                                                                                                                                                                                                                                           | [Date](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date)                                                                                                                                                                                                                            | :heavy_minus_sign:                                                                                                                                                                                                                                                                                                       | The timestamp that this fill was transacted at the market                                                                                                                                                                                                                                                                | 2023-09-21T16:55:27.580Z                                                                                                                                                                                                                                                                                                 |
| `quantity`                                                                                                                                                                                                                                                                                                               | [components.BasketTradingExecutionsQuantity](../../models/components/baskettradingexecutionsquantity.md)                                                                                                                                                                                                                 | :heavy_minus_sign:                                                                                                                                                                                                                                                                                                       | The quantity of the order. For Equities: measured in shares. For Fixed Income assets: measured in the face value of the currency of the order.                                                                                                                                                                           | {<br/>"value": "3.591"<br/>}                                                                                                                                                                                                                                                                                             |