# BeneficiaryCreateEntityType

The entity type of the beneficiary; Required if the beneficiary is a legal entity.

## Example Usage

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

let value: BeneficiaryCreateEntityType =
  BeneficiaryCreateEntityType.Corporation;
```

## Values

This is an open enum. Unrecognized values will be captured as the `Unrecognized<string>` branded type.

| Name                      | Value                     |
| ------------------------- | ------------------------- |
| `EntityTypeUnspecified`   | ENTITY_TYPE_UNSPECIFIED   |
| `Corporation`             | CORPORATION               |
| `LimitedLiabilityCompany` | LIMITED_LIABILITY_COMPANY |
| `Trust`                   | TRUST                     |
| `Estate`                  | ESTATE                    |
| -                         | `Unrecognized<string>`    |