# BookingFee

Fee message includes both fee type as well as the fee amount

## Example Usage

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

let value: BookingFee = {};
```

## Fields

| Field                                                                                                                                                                                                                                                                    | Type                                                                                                                                                                                                                                                                     | Required                                                                                                                                                                                                                                                                 | Description                                                                                                                                                                                                                                                              | Example                                                                                                                                                                                                                                                                  |
| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| `amount`                                                                                                                                                                                                                                                                 | [components.BookingFeeAmount](../../models/components/bookingfeeamount.md)                                                                                                                                                                                               | :heavy_minus_sign:                                                                                                                                                                                                                                                       | The fee amount. Not required if the fee is suppressed                                                                                                                                                                                                                    | {<br/>"value": "2.50"<br/>}                                                                                                                                                                                                                                              |
| `suppressFee`                                                                                                                                                                                                                                                            | *boolean*                                                                                                                                                                                                                                                                | :heavy_minus_sign:                                                                                                                                                                                                                                                       | Indicates whether to explicitly suppress this fee type. If the trade would normally calculate fees (e.g., for TRADE_ACTIVITY), the client can add a fee with this boolean value set to true, and the Booking Service will not calculate or assess that fee on the trade. | true                                                                                                                                                                                                                                                                     |
| `type`                                                                                                                                                                                                                                                                   | [components.BookingFeeType](../../models/components/bookingfeetype.md)                                                                                                                                                                                                   | :heavy_minus_sign:                                                                                                                                                                                                                                                       | The type of fee                                                                                                                                                                                                                                                          | SEC_FEE                                                                                                                                                                                                                                                                  |