FeedbackType
public enum FeedbackType : CustomStringConvertible
Feedback type is used to specify the type of feedback being recorded with NavigationEventsManager.recordFeedback(type:description:).
-
Indicates general feedback. You should provide a
descriptionstring toNavigationEventsManager.recordFeedback(type:description:)to elaborate on the feedback if possible.Declaration
Swift
case general -
Indicates an incorrect visual.
Declaration
Swift
case incorrectVisual(subtype: IncorrectVisualSubtype?) -
Indicates confusing voice instruction.
Declaration
Swift
case confusingAudio(subtype: ConfusingAudioSubtype?) -
Indicates an issue with route quality.
Declaration
Swift
case routeQuality(subtype: RouteQualitySubtype?) -
Indicates that an illegal route was recommended.
Declaration
Swift
case illegalRoute(subtype: IllegalRouteSubtype?) -
Indicates a road closure was observed.
Declaration
Swift
case roadClosure(subtype: RoadClosureSubtype?) -
Declaration
Swift
public var description: String { get } -
Generates a
FeedbackItemfor a givenFeedbackTypeDeclaration
Swift
func generateFeedbackItem() -> FeedbackItemReturn Value
A
FeedbackItemmodel object used to render UI
Install in Dash
FeedbackType Enumeration Reference