---
title: "resolveBillType(for:with:)"
framework: intents
role: symbol
role_heading: Instance Method
path: "intents/insearchforbillsintenthandling/resolvebilltype(for:with:)"
---

# resolveBillType(for:with:)

Resolves the bill type to use during your search.

## Declaration

```swift
optional func resolveBillType(for intent: INSearchForBillsIntent, with completion: @escaping @Sendable (INBillTypeResolutionResult) -> Void)
```

```swift
optional func resolveBillType(for intent: INSearchForBillsIntent) async -> INBillTypeResolutionResult
```

## Parameters

- `intent`: The intent object containing details about the user’s request. Use this object to get the initial information, if any, provided by the user.
- `completion`: The handler block to execute with the resolution. 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 Implement this method to resolve any questions about the bill type for the search. Use the billType property in the intent object to identify the requested bill type. If the bill type is INBillType.unknown, you may return a resolution of success with that value or you may return a resolution of not required. In either case, when the bill type is INBillType.unknown, your subsequent search should return all bills regardless of their type.

## See Also

### Resolving the Intent Parameters

- [resolveBillPayee(for:with:)](intents/insearchforbillsintenthandling/resolvebillpayee(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)
