Contents

resolveStatus(for:with:)

Resolves the status value to use during the search.

Declaration

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

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 with the status that you intend to use during your search.

Discussion

Implement this method to resolve the status to use during the search. Use this method to verify that you can search for tasks with the specified status. If you support searching based on the given status, return a successful resolution with the status value. If you do not support searching based on status, return a resolution indicating that the status is not required.

See Also

Resolving the Intent Parameters