---
title: INSearchForBillsIntentHandling
framework: intents
role: symbol
role_heading: Protocol
path: intents/insearchforbillsintenthandling
---

# INSearchForBillsIntentHandling

The handler interface for searching for bills associated with the user.

## Declaration

```swift
protocol INSearchForBillsIntentHandling : NSObjectProtocol
```

## Overview

Overview Use the methods of the INSearchForBillsIntentHandling protocol to resolve, confirm, and handle requests to search for bills related to the user. Adopt this protocol in an object of your Intents extension that’s capable of searching the user’s bills and returning those bills that match the specified criteria. Users can search for bills based on the payee, the bill type, the due date, and whether the user has paid them or not. Siri delivers an INSearchForBillsIntent object to your handler when the user asks to search for bills using your app. The provided intent object contains the parameters to use during the search. Use the methods of this protocol to resolve the parameters and perform the search.

## Topics

### Resolving the Intent Parameters

- [resolveBillPayee(for:with:)](intents/insearchforbillsintenthandling/resolvebillpayee(for:with:).md)
- [resolveBillType(for:with:)](intents/insearchforbillsintenthandling/resolvebilltype(for:with:).md)
- [resolveDueDateRange(for:with:)](intents/insearchforbillsintenthandling/resolveduedaterange(for:with:).md)
- [resolvePaymentDateRange(for:with:)](intents/insearchforbillsintenthandling/resolvepaymentdaterange(for:with:).md)
- [resolveStatus(for:with:)](intents/insearchforbillsintenthandling/resolvestatus(for:with:).md)

### Confirming the Response

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

### Handling the Intent

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

## Relationships

### Inherits From

- [NSObjectProtocol](objectivec/nsobjectprotocol.md)

### Inherited By

- [INPaymentsDomainHandling](intents/inpaymentsdomainhandling.md)

## See Also

### Bill Search

- [INSearchForBillsIntent](intents/insearchforbillsintent.md)
- [INSearchForBillsIntentResponse](intents/insearchforbillsintentresponse.md)
