---
title: INSetTaskAttributeIntentHandling
framework: intents
role: symbol
role_heading: Protocol
path: intents/insettaskattributeintenthandling
---

# INSetTaskAttributeIntentHandling

The handler interface for updating the attributes of an existing task.

## Declaration

```swift
protocol INSetTaskAttributeIntentHandling : NSObjectProtocol
```

## Overview

Overview Use the methods of the INSetTaskAttributeIntentHandling protocol to resolve, confirm, and handle requests to modify the attributes of a task. SiriKit supports changing the task’s completion status and changing the location- or time-based triggers that you use to generate reminders. Adopt this protocol in an object of your Intents extension that is capable of handling the request directly or forwarding the request to your app or task management service. Siri delivers an INSetTaskAttributeIntent object to your handler when the user asks to modify an existing task. The provided intent object contains descriptions of the tasks and the new values to apply. If a value is not provided for a given attribute, do not modify that attribute. Use the methods of this protocol to resolve the parameters and update the task.

## Topics

### Resolving the Intent Parameters

- [resolveTargetTask(for:with:)](intents/insettaskattributeintenthandling/resolvetargettask(for:with:).md)
- [resolveStatus(for:with:)](intents/insettaskattributeintenthandling/resolvestatus(for:with:).md)
- [resolveSpatialEventTrigger(for:with:)](intents/insettaskattributeintenthandling/resolvespatialeventtrigger(for:with:).md)
- [resolveTemporalEventTrigger(for:with:)](intents/insettaskattributeintenthandling/resolvetemporaleventtrigger(for:with:)-9bfly.md)
- [resolvePriority(for:with:)](intents/insettaskattributeintenthandling/resolvepriority(for:with:).md)
- [resolveTaskTitle(for:with:)](intents/insettaskattributeintenthandling/resolvetasktitle(for:with:).md)
- [resolveTemporalEventTrigger(for:with:)](intents/insettaskattributeintenthandling/resolvetemporaleventtrigger(for:with:)-1wr3f.md)

### Confirming the Response

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

### Handling the Intent

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

## Relationships

### Inherits From

- [NSObjectProtocol](objectivec/nsobjectprotocol.md)

### Inherited By

- [INNotebookDomainHandling](intents/innotebookdomainhandling.md)

## See Also

### Task Attributes

- [INSetTaskAttributeIntent](intents/insettaskattributeintent.md)
- [INSetTaskAttributeIntentResponse](intents/insettaskattributeintentresponse.md)
