# AchDepositCreate

A deposit transfer using the ACH mechanism.

## Example Usage

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

let value: AchDepositCreate = {
  amount: {},
  bankRelationship:
    "accounts/01H8FB90ZRRFWXB4XC2JPJ1D4Y/bankRelationships/651ef9de0dee00240813e60e",
  clientTransferId: "179dcd33-49f8-4615-989c-560fb387c4fd",
};
```

## 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 |                                                                                                                                                                                                                                                                                                                                                              |
| `bankRelationship`                                                                                                                                                                                                                                                                                                                                           | *string*                                                                                                                                                                                                                                                                                                                                                     | :heavy_check_mark:                                                                                                                                                                                                                                                                                                                                           | The bank relationship to be used for the ACH deposit.                                                                                                                                                                                                                                                                                                        | accounts/01H8FB90ZRRFWXB4XC2JPJ1D4Y/bankRelationships/651ef9de0dee00240813e60e                                                                                                                                                                                                                                                                               |
| `clientTransferId`                                                                                                                                                                                                                                                                                                                                           | *string*                                                                                                                                                                                                                                                                                                                                                     | :heavy_check_mark:                                                                                                                                                                                                                                                                                                                                           | The external identifier supplied by the API caller. Each request must have a unique pairing of `client_transfer_id` and `account`.                                                                                                                                                                                                                           | 179dcd33-49f8-4615-989c-560fb387c4fd                                                                                                                                                                                                                                                                                                                         |
| `memo`                                                                                                                                                                                                                                                                                                                                                       | *string*                                                                                                                                                                                                                                                                                                                                                     | :heavy_minus_sign:                                                                                                                                                                                                                                                                                                                                           | The memo that will appear on the customer's bank statement.                                                                                                                                                                                                                                                                                                  | ACH                                                                                                                                                                                                                                                                                                                                                          |
| `retirementContribution`                                                                                                                                                                                                                                                                                                                                     | [components.RetirementContributionCreate](../../models/components/retirementcontributioncreate.md)                                                                                                                                                                                                                                                           | :heavy_minus_sign:                                                                                                                                                                                                                                                                                                                                           | A contribution to a retirement account.                                                                                                                                                                                                                                                                                                                      |                                                                                                                                                                                                                                                                                                                                                              |