> Documentation index: [Saleor](/llms.txt) · [This section](/api-reference/checkout/llms.txt)
> Source: https://docs.saleor.io/api-reference/checkout/inputs/checkout-auto-complete-input

# CheckoutAutoCompleteInput Input Type

No description

```graphql
input CheckoutAutoCompleteInput {
  enabled: Boolean!
  delay: Minute
  cutOffDate: DateTime
}
```

<a id="fields"></a>

### Fields

<a id="enabled"></a>

#### [`enabled`](#enabled) ● [`Boolean!`](/api-reference/miscellaneous/scalars/boolean.md)

Default `false`. Determines if the paid checkouts should be automatically completed. This setting applies only to checkouts where payment was processed through transactions.When enabled, the checkout will be automatically completed once the checkout `charge_status` reaches `FULL`. This occurs when the total sum of charged and authorized transaction amounts equals or exceeds the checkout's total amount.

<a id="delay"></a>

#### [`delay`](#delay) ● [`Minute`](/api-reference/miscellaneous/scalars/minute.md)

The time in minutes after which the fully paid checkout will be automatically completed. Default is 30. Set to 0 for immediate completion. Should be less than the threshold for the oldest modified checkout eligible for automatic completion.

<a id="cut-off-date"></a>

#### [`cutOffDate`](#cut-off-date) ● [`DateTime`](/api-reference/miscellaneous/scalars/date-time.md)

Specifies the earliest date on which fully paid checkouts can begin to be automatically completed. Fully paid checkouts dated before this cut-off will not be automatically completed. Must be less than the threshold of the oldest modified checkout eligible for automatic completion. Default is current date time.

<a id="member-of"></a>

### Member Of

[`CheckoutSettingsInput`](/api-reference/checkout/inputs/checkout-settings-input.md) input
