# IctWithdrawalCreate

An Instant Cash Transfer. Funds are moved from a customer's brokerage account to a configured Firm account.

## Example Usage

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

let value: IctWithdrawalCreate = {
  clientTransferId: "20230817000319",
  program: IctWithdrawalCreateProgram.BrokerPartner,
  travelRule: {
    recipientInstitution: {
      accountId: "<id>",
      title: "<value>",
    },
  },
};
```

## Fields

| Field                                                                                                                                                                                                                                                                                                                                                        | Type                                                                                                                                                                                                                                                                                                                                                         | Required                                                                                                                                                                                                                                                                                                                                                     | Description                                                                                                                                                                                                                                                                                                                                                  | Example                                                                                                                                                                                                                                                                                                                                                      |
| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| `amount`                                                                                                                                                                                                                                                                                                                                                     | [components.DecimalCreate](../../models/components/decimalcreate.md)                                                                                                                                                                                                                                                                                         | :heavy_minus_sign:                                                                                                                                                                                                                                                                                                                                           | A representation of a decimal value, such as 2.5. Clients may convert values into language-native decimal formats, such as Java's [BigDecimal][] or Python's [decimal.Decimal][].<br/><br/> [BigDecimal]:<br/> https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/math/BigDecimal.html<br/> [decimal.Decimal]: https://docs.python.org/3/library/decimal.html |                                                                                                                                                                                                                                                                                                                                                              |
| `clientTransferId`                                                                                                                                                                                                                                                                                                                                           | *string*                                                                                                                                                                                                                                                                                                                                                     | :heavy_check_mark:                                                                                                                                                                                                                                                                                                                                           | External identifier supplied by the API caller. Each request must have a unique pairing of client_transfer_id and account.                                                                                                                                                                                                                                   | 20230817000319                                                                                                                                                                                                                                                                                                                                               |
| `fullDisbursement`                                                                                                                                                                                                                                                                                                                                           | *boolean*                                                                                                                                                                                                                                                                                                                                                    | :heavy_minus_sign:                                                                                                                                                                                                                                                                                                                                           | Whether the entire account balance is being withdrawn. This field should either be set to true or left unset if the amount field is provided.                                                                                                                                                                                                                | true                                                                                                                                                                                                                                                                                                                                                         |
| `program`                                                                                                                                                                                                                                                                                                                                                    | [components.IctWithdrawalCreateProgram](../../models/components/ictwithdrawalcreateprogram.md)                                                                                                                                                                                                                                                               | :heavy_check_mark:                                                                                                                                                                                                                                                                                                                                           | The name of the program that the ICT withdrawal is associated with.                                                                                                                                                                                                                                                                                          | BROKER_PARTNER                                                                                                                                                                                                                                                                                                                                               |
| `retirementDistribution`                                                                                                                                                                                                                                                                                                                                     | [components.RetirementDistributionCreate](../../models/components/retirementdistributioncreate.md)                                                                                                                                                                                                                                                           | :heavy_minus_sign:                                                                                                                                                                                                                                                                                                                                           | A distribution from a retirement account.                                                                                                                                                                                                                                                                                                                    |                                                                                                                                                                                                                                                                                                                                                              |
| `travelRule`                                                                                                                                                                                                                                                                                                                                                 | [components.IctWithdrawalTravelRuleCreate](../../models/components/ictwithdrawaltravelrulecreate.md)                                                                                                                                                                                                                                                         | :heavy_check_mark:                                                                                                                                                                                                                                                                                                                                           | The travel rules associated with an ICT withdrawal                                                                                                                                                                                                                                                                                                           |                                                                                                                                                                                                                                                                                                                                                              |