Contents

resolveBillType(for:with:)

Resolves the bill type to use during your search.

Declaration

optional func resolveBillType(for intent: INSearchForBillsIntent, with completion: @escaping  @Sendable (INBillTypeResolutionResult) -> Void)
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:

    resolutionResult

    The object containing the details of your proposed resolution. For successful resolutions, create a resolution object containing the Inbilltype value that you intend to use during the search.

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