# IctDepositCreate

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

## Example Usage

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

let value: IctDepositCreate = {
  amount: {},
  clientTransferId: "ABC-123",
  program: Program.DepositOnly,
  travelRule: {
    originatingInstitution: {
      accountId: "<id>",
      title: "<value>",
    },
  },
};
```

## Fields

| Field                                                                                                                                                                                                                                                                                                                                                        | Type                                                                                                                                                                                                                                                                                                                                                         | Required                                                                                                                                                                                                                                                                                                                                                     | Description                                                                                                                                                                                                                                                                                                                                                  | Example                                                                                                                                                                                                                                                                                                                                                      |
| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| `amount`                                                                                                                                                                                                                                                                                                                                                     | [components.DecimalCreate](../../models/components/decimalcreate.md)                                                                                                                                                                                                                                                                                         | :heavy_check_mark:                                                                                                                                                                                                                                                                                                                                           | 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.                                                                                                                                                                                                                                   | ABC-123                                                                                                                                                                                                                                                                                                                                                      |
| `program`                                                                                                                                                                                                                                                                                                                                                    | [components.Program](../../models/components/program.md)                                                                                                                                                                                                                                                                                                     | :heavy_check_mark:                                                                                                                                                                                                                                                                                                                                           | The name of the program the ICT deposit is associated with                                                                                                                                                                                                                                                                                                   | DEPOSIT_ONLY                                                                                                                                                                                                                                                                                                                                                 |
| `retirementContribution`                                                                                                                                                                                                                                                                                                                                     | [components.RetirementContributionCreate](../../models/components/retirementcontributioncreate.md)                                                                                                                                                                                                                                                           | :heavy_minus_sign:                                                                                                                                                                                                                                                                                                                                           | A contribution to a retirement account.                                                                                                                                                                                                                                                                                                                      |                                                                                                                                                                                                                                                                                                                                                              |
| `travelRule`                                                                                                                                                                                                                                                                                                                                                 | [components.IctDepositTravelRuleCreate](../../models/components/ictdeposittravelrulecreate.md)                                                                                                                                                                                                                                                               | :heavy_check_mark:                                                                                                                                                                                                                                                                                                                                           | The travel rules associated with an ICT deposit                                                                                                                                                                                                                                                                                                              |                                                                                                                                                                                                                                                                                                                                                              |