Contents

resolveStatus(for:with:)

Resolves the bill status to use during your search.

Declaration

optional func resolveStatus(for intent: INSearchForBillsIntent, with completion: @escaping  @Sendable (INPaymentStatusResolutionResult) -> Void)
optional func resolveStatus(for intent: INSearchForBillsIntent) async -> INPaymentStatusResolutionResult

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 Inpaymentstatus value that you intend to use during the search.

Discussion

Implement this method to resolve any questions about the status of a bill. Use the status property of the intent object to identify the status type to search. If the specified status type is one that your app supports, return a successful resolution with that type.

If the status type is INPaymentStatus.unknown, return a resolution of not required from this method. When the status type is unknown, don’t filter the subsequent search results based on the bill’s current status. Instead, return all bills whether they’re pending, completed, canceled, or failed.

See Also

Resolving the Intent Parameters