# AchDepositScheduleCreate

A deposit transfer schedule using the ACH mechanism

## Example Usage

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

let value: AchDepositScheduleCreate = {
  bankRelationship:
    "accounts/01H8FB90ZRRFWXB4XC2JPJ1D4Y/bankRelationships/651ef9de0dee00240813e60e",
  scheduleDetails: {
    amount: {},
    clientScheduleId: "ABC-123",
    scheduleProperties: {
      startDate: {},
      timeUnit: TimeUnit.Month,
      unitMultiplier: 1,
    },
  },
};
```

## Fields

| Field                                                                                                                                                                                                                  | Type                                                                                                                                                                                                                   | Required                                                                                                                                                                                                               | Description                                                                                                                                                                                                            | Example                                                                                                                                                                                                                |
| ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `bankRelationship`                                                                                                                                                                                                     | *string*                                                                                                                                                                                                               | :heavy_check_mark:                                                                                                                                                                                                     | The name of the bank relationship to be used in the ACH transaction                                                                                                                                                    | accounts/01H8FB90ZRRFWXB4XC2JPJ1D4Y/bankRelationships/651ef9de0dee00240813e60e                                                                                                                                         |
| ~~`iraContribution`~~                                                                                                                                                                                                  | [components.IraContribution](../../models/components/iracontribution.md)                                                                                                                                               | :heavy_minus_sign:                                                                                                                                                                                                     | : warning: ** DEPRECATED **: This will be removed in a future release, please migrate away from it as soon as possible.<br/><br/>Deprecated: see retirement_contribution_details The ira contribution info for an IRA account. |                                                                                                                                                                                                                        |
| `retirementContribution`                                                                                                                                                                                               | [components.ScheduledRetirementContributionCreate](../../models/components/scheduledretirementcontributioncreate.md)                                                                                                   | :heavy_minus_sign:                                                                                                                                                                                                     | The retirement contribution details for a scheduled deposit                                                                                                                                                            |                                                                                                                                                                                                                        |
| `scheduleDetails`                                                                                                                                                                                                      | [components.DepositScheduleDetailsCreate](../../models/components/depositscheduledetailscreate.md)                                                                                                                     | :heavy_check_mark:                                                                                                                                                                                                     | Details of deposit schedule transfers                                                                                                                                                                                  |                                                                                                                                                                                                                        |