CarFeedbackOption  
    data class CarFeedbackOption(    val title: String,     val icon: CarFeedbackIcon,     val type: String? = null,     val subType: List<String>? = null,     val searchFeedbackReason: String? = null,     val favoritesFeedbackReason: String? = null,     val nextPoll: CarFeedbackPoll? = null)
Content copied to clipboard
Represents one of the predefined categories users can select when providing feedback
Constructors
Link copied to clipboard
                fun CarFeedbackOption(    title: String,     icon: CarFeedbackIcon,     type: String? = null,     subType: List<String>? = null,     searchFeedbackReason: String? = null,     favoritesFeedbackReason: String? = null,     nextPoll: CarFeedbackPoll? = null)
Content copied to clipboard