# RedemptionPartial

Used when securities are redeemed by the issuer for cash, in part, before their scheduled maturity date and details related to the redemption. The outstanding amount of securities will be proportionally reduced based on a specific percentage of holding

## Example Usage

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

let value: RedemptionPartial = {};
```

## Fields

| Field                                                                                                                                                    | Type                                                                                                                                                     | Required                                                                                                                                                 | Description                                                                                                                                              | Example                                                                                                                                                  |
| -------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `action`                                                                                                                                                 | [components.EntryRedemptionPartialAction](../../models/components/entryredemptionpartialaction.md)                                                       | :heavy_minus_sign:                                                                                                                                       | Corresponds to whether the entry is incoming or outgoing                                                                                                 | INCOMING                                                                                                                                                 |
| `cashRate`                                                                                                                                               | [components.EntryRedemptionPartialCashRate](../../models/components/entryredemptionpartialcashrate.md)                                                   | :heavy_minus_sign:                                                                                                                                       | The rate (raw value, not a percentage, example: 50% will be .5 in this field) at which cash will be disbursed to the shareholder                         | {<br/>"value": "0.25"<br/>}                                                                                                                              |
| `corporateActionGeneralInformation`                                                                                                                      | [components.EntryRedemptionPartialCorporateActionGeneralInformation](../../models/components/entryredemptionpartialcorporateactiongeneralinformation.md) | :heavy_minus_sign:                                                                                                                                       | Common fields for corporate actions                                                                                                                      |                                                                                                                                                          |
| `paymentDate`                                                                                                                                            | [components.EntryRedemptionPartialPaymentDate](../../models/components/entryredemptionpartialpaymentdate.md)                                             | :heavy_minus_sign:                                                                                                                                       | The anticipated payment date at the depository                                                                                                           | {<br/>"day": 14,<br/>"month": 5,<br/>"year": 2024<br/>}                                                                                                  |
| `quantity`                                                                                                                                               | [components.EntryRedemptionPartialQuantity](../../models/components/entryredemptionpartialquantity.md)                                                   | :heavy_minus_sign:                                                                                                                                       | Corresponds to the position's trade quantity                                                                                                             | {<br/>"value": "100.00"<br/>}                                                                                                                            |