---
title: INPauseWorkoutIntentHandling
framework: intents
role: symbol
role_heading: Protocol
path: intents/inpauseworkoutintenthandling
---

# INPauseWorkoutIntentHandling

An interface that handles requests to pause a workout.

## Declaration

```swift
protocol INPauseWorkoutIntentHandling : NSObjectProtocol
```

## Overview

Overview Use the methods of the INPauseWorkoutIntentHandling protocol to resolve, confirm, and handle requests to pause a workout that’s using your app. Adopt this protocol in an object of your Intents extension that’s capable of validating the workout name. You don’t actually pause the workout from your Intents extension. When the handle(intent:completion:) returns, SiriKit launches your app and passes it to an NSUserActivity object that contains the intent object and your response. Your app uses the information in those objects to pause the workout.

## Topics

### Resolving the Intent Parameters

- [resolveWorkoutName(for:with:)](intents/inpauseworkoutintenthandling/resolveworkoutname(for:with:).md)

### Confirming the Intent

- [confirm(intent:completion:)](intents/inpauseworkoutintenthandling/confirm(intent:completion:).md)

### Handling the Intent

- [handle(intent:completion:)](intents/inpauseworkoutintenthandling/handle(intent:completion:).md)

## Relationships

### Inherits From

- [NSObjectProtocol](objectivec/nsobjectprotocol.md)

### Inherited By

- [INWorkoutsDomainHandling](intents/inworkoutsdomainhandling.md)

## See Also

### Pause a Workout

- [INPauseWorkoutIntent](intents/inpauseworkoutintent.md)
- [INPauseWorkoutIntentResponse](intents/inpauseworkoutintentresponse.md)
