---
title: "resolveIsOpenEnded(for:with:)"
framework: intents
role: symbol
role_heading: Instance Method
path: "intents/instartworkoutintenthandling/resolveisopenended(for:with:)"
---

# resolveIsOpenEnded(for:with:)

Resolves whether the user’s workout is open ended.

## Declaration

```swift
optional func resolveIsOpenEnded(for intent: INStartWorkoutIntent, with completion: @escaping @Sendable (INBooleanResolutionResult) -> Void)
```

```swift
optional func resolveIsOpenEnded(for intent: INStartWorkoutIntent) async -> INBooleanResolutionResult
```

## Parameters

- `intent`: The intent object that contains details about the user’s request. Use this object to get the initial information, if any, provided by the user.
- `completion`: The block to execute with the resolution. You must execute this block while implementing this method. This block has no return value and takes the following parameter:

## Discussion

Discussion This method resolves whether the workout is open ended. If you don’t implement this method, SiriKit assumes that you’re able to start either an open ended or fixed goal workout.

## See Also

### Resolving the Intent Parameters

- [resolveWorkoutName(for:with:)](intents/instartworkoutintenthandling/resolveworkoutname(for:with:).md)
- [resolveGoalValue(for:with:)](intents/instartworkoutintenthandling/resolvegoalvalue(for:with:).md)
- [resolveWorkoutGoalUnitType(for:with:)](intents/instartworkoutintenthandling/resolveworkoutgoalunittype(for:with:).md)
- [resolveWorkoutLocationType(for:with:)](intents/instartworkoutintenthandling/resolveworkoutlocationtype(for:with:).md)
