StructuredSearchResponse
public enum StructuredSearchResponse : Equatable
Defines the result of current structured search. It’s either the end of the search (its destination) or options to proceed (search candidates).
-
Contains a
StructuredSearchState
when the search path hasn’t ended. The client uses the candidates fromStructuredSearchState
for theSearchSession
to proceed with the search.Declaration
Swift
case nextState(StructuredSearchState)
-
Contains a
StructuredSearchCandidate
as a destination when the search path ended.Declaration
Swift
case destination(StructuredSearchCandidate)