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
StructuredSearchStatewhen the search path hasn’t ended. The client uses the candidates fromStructuredSearchStatefor theSearchSessionto proceed with the search.Declaration
Swift
case nextState(StructuredSearchState) -
Contains a
StructuredSearchCandidateas a destination when the search path ended.Declaration
Swift
case destination(StructuredSearchCandidate)
TomTom SDK for iOS (0.53.1)
StructuredSearchResponse