# CashJournalScheduleScheduleDetails

The schedule details. This uses the WithdrawalScheduleDetails object in order to also support full disbursement journals. The source_account is the account debited and would be completely drawn down when schedule_details.full_disbursement == true

## Example Usage

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

let value: CashJournalScheduleScheduleDetails = {};
```

## Fields

| Field                                                                                                                     | Type                                                                                                                      | Required                                                                                                                  | Description                                                                                                               | Example                                                                                                                   |
| ------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------- |
| `amount`                                                                                                                  | [components.CashJournalScheduleAmount](../../models/components/cashjournalscheduleamount.md)                              | :heavy_minus_sign:                                                                                                        | A cash amount in the format of decimal value (mutually exclusive with 'full_disbursement')                                | {<br/>"value": "100.00"<br/>}                                                                                             |
| `clientScheduleId`                                                                                                        | *string*                                                                                                                  | :heavy_minus_sign:                                                                                                        | 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.CashJournalScheduleScheduleProperties](../../models/components/cashjournalschedulescheduleproperties.md)      | :heavy_minus_sign:                                                                                                        | Common schedule properties                                                                                                |                                                                                                                           |