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
description
string 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?)
-
Indicates a problem with positioning the user
Declaration
Swift
case positioning(subtype: PositioningSubtype?)
-
Description of the category for this type of feedback
Declaration
Swift
public var description: String { get }
-
Optional detailed description of the subtype of this feedback
Declaration
Swift
public var subtypeDescription: String? { get }
-
Generates a
FeedbackItem
for a givenFeedbackType
Declaration
Swift
func generateFeedbackItem() -> FeedbackItem
Return Value
A
FeedbackItem
model object used to render UI