---
title: "handle(intent:completion:)"
framework: intents
role: symbol
role_heading: Instance Method
path: "intents/insettaskattributeintenthandling/handle(intent:completion:)"
---

# handle(intent:completion:)

Handles the modification of the attributes of a task.

## Declaration

```swift
func handle(intent: INSetTaskAttributeIntent, completion: @escaping @Sendable (INSetTaskAttributeIntentResponse) -> Void)
```

```swift
func handle(intent: INSetTaskAttributeIntent) async -> INSetTaskAttributeIntentResponse
```

## Parameters

- `intent`: The intent object containing details about the user’s request. The information in this object has already been resolved and confirmed by your handler object.
- `completion`: The handler block to execute with your response. You must execute this handler at some point during your implementation of this method. This handler has no return value and takes the following parameter:

## Discussion

Discussion In your implementation of this method, update the task based on the information in the intent parameter, create a response object with the relevant details, and call the provided completion handler.
