> ## Documentation Index
> Fetch the complete documentation index at: https://docs.stac.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# Delay Action

> Documentation for Delay Action

The `StacDelayAction` allows you to do nothing for a specified duration.

## Delay Action Properties

| Property     | Type  | Description                                              |
| ------------ | ----- | -------------------------------------------------------- |
| milliseconds | `int` | The amount of time (in milliseconds) we want to wait for |

## Example

<CodeGroup>
  ```dart Dart theme={null}
  StacDelayAction(milliseconds: 1000)
  ```

  ```json JSON theme={null}
  {
      "actionType": "delay",
      "milliseconds": 1000
  }
  ```
</CodeGroup>
