resolveBillPayee(for:with:)
Resolves the payee to use during your search.
Declaration
optional func resolveBillPayee(for intent: INSearchForBillsIntent, with completion: @escaping @Sendable (INBillPayeeResolutionResult) -> Void)optional func resolveBillPayee(for intent: INSearchForBillsIntent) async -> INBillPayeeResolutionResultParameters
- 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:
- resolutionResult
The object containing the details of your proposed resolution. For successful resolutions, create a resolution object containing the Inbillpayee object that you intend to use during the search.
Discussion
Implement this method to resolve any questions about the payee to use during the search. Use the billPayee property in the intent object to identify the requested payee. The payee represents the entity that provided the bill to the user. The user must register all payees in advance.
If the intent doesn’t contain any payee information, return a resolution of not required from this method. During the subsequent search, don’t filter the search results based on the payee.