Contents

resolveAccountNickname(for:with:)

Resolves the account nickname to use during a search.

Declaration

optional func resolveAccountNickname(for intent: INSearchForAccountsIntent, with completion: @escaping  @Sendable (INSpeakableStringResolutionResult) -> Void)
optional func resolveAccountNickname(for intent: INSearchForAccountsIntent) async -> INSpeakableStringResolutionResult

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

Implement this method to resolve any questions about the account nickname used during a search. Use this method to examine the accountNickname property of the intent object. Return a resolution of success if you can perform the search using the specified nickname. If the property does not contain a value, return a resolution of success or not required based if you can use other information in the intent object to perform the search.

See Also

Resolving the Intent Parameters