# BookingLot

For use in specifying lot matching instructions on a trade

## Example Usage

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

let value: BookingLot = {};
```

## Fields

| Field                                                                                                                                                            | Type                                                                                                                                                             | Required                                                                                                                                                         | Description                                                                                                                                                      | Example                                                                                                                                                          |
| ---------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `id`                                                                                                                                                             | *string*                                                                                                                                                         | :heavy_minus_sign:                                                                                                                                               | User-specified ID for the lot                                                                                                                                    | client-provided-lot-id                                                                                                                                           |
| ~~`money`~~                                                                                                                                                      | [components.BookingLotMoney](../../models/components/bookinglotmoney.md)                                                                                         | :heavy_minus_sign:                                                                                                                                               | : warning: ** DEPRECATED **: This will be removed in a future release, please migrate away from it as soon as possible.<br/><br/>Deprecated; use the price field instead |                                                                                                                                                                  |
| `price`                                                                                                                                                          | [components.BookingLotPrice](../../models/components/bookinglotprice.md)                                                                                         | :heavy_minus_sign:                                                                                                                                               | Lot price in the same currency as the trade price                                                                                                                | {<br/>"value": "2.50"<br/>}                                                                                                                                      |
| `quantity`                                                                                                                                                       | [components.BookingLotQuantity](../../models/components/bookinglotquantity.md)                                                                                   | :heavy_minus_sign:                                                                                                                                               | Lot quantity                                                                                                                                                     | {<br/>"value": "2.50"<br/>}                                                                                                                                      |
| `tradeDate`                                                                                                                                                      | [components.TradeDate](../../models/components/tradedate.md)                                                                                                     | :heavy_minus_sign:                                                                                                                                               | Trade date for this lot specifically                                                                                                                             | 2024-07-19 00:00:00 +0000 UTC                                                                                                                                    |