# WithdrawalScheduleDetailsCreate

Details of withdrawal schedule transfers

## Example Usage

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

let value: WithdrawalScheduleDetailsCreate = {
  clientScheduleId: "ABC-123",
  scheduleProperties: {
    startDate: {},
    timeUnit: TimeUnit.Month,
    unitMultiplier: 1,
  },
};
```

## 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 |                                                                                                                                                                                                                                                                                                                                                              |
| `clientScheduleId`                                                                                                                                                                                                                                                                                                                                           | *string*                                                                                                                                                                                                                                                                                                                                                     | :heavy_check_mark:                                                                                                                                                                                                                                                                                                                                           | External identifier supplied by the API caller. Each request must have a unique pairing of client_schedule_id and account                                                                                                                                                                                                                                    | ABC-123                                                                                                                                                                                                                                                                                                                                                      |
| `fullDisbursement`                                                                                                                                                                                                                                                                                                                                           | *boolean*                                                                                                                                                                                                                                                                                                                                                    | :heavy_minus_sign:                                                                                                                                                                                                                                                                                                                                           | Flag to indicate a full disbursement transfer (mutually exclusive with 'amount')                                                                                                                                                                                                                                                                             | false                                                                                                                                                                                                                                                                                                                                                        |
| `scheduleProperties`                                                                                                                                                                                                                                                                                                                                         | [components.SchedulePropertiesCreate](../../models/components/schedulepropertiescreate.md)                                                                                                                                                                                                                                                                   | :heavy_check_mark:                                                                                                                                                                                                                                                                                                                                           | Properties common to all transfer schedules                                                                                                                                                                                                                                                                                                                  |                                                                                                                                                                                                                                                                                                                                                              |