Types

Link copied to clipboard
data class OnCategorySearch(val queryOrCategoryDisplayName: String, val returnState: ReturnState = ReturnState.Empty) : Event.ChangeStateEvent
Link copied to clipboard
Link copied to clipboard
data class OnClosePlaceSuggestions(val backToState: TripState, val backToSelectedPlace: SelectedPlace?, val backToSelectedWaypoint: DestinationSearchResult?) : Event.ChangeStateEvent
Link copied to clipboard
Link copied to clipboard
data class OnPlaceSuggestionsLoading(val backToState: TripState, val backToSelectedPlace: SelectedPlace?, val backToSelectedWaypoint: DestinationSearchResult?, val categoryOrQuery: String) : Event.ChangeStateEvent
Link copied to clipboard
data class OnPlaceSuggestionsSelected(val backToState: TripState, val backToSelectedPlace: SelectedPlace?, val backToSelectedWaypoint: DestinationSearchResult?, val suggestions: List<DestinationSearchResult>, val categoryOrQuery: String) : Event.ChangeStateEvent
Link copied to clipboard
data class OnRouteFetching(val waypoints: List<DestinationSearchResult>, val fetchingState: FetchingState = FetchingState.FetchingRoute, val returnState: ReturnState = ReturnState.Empty) : Event.ChangeStateEvent
Link copied to clipboard
data class OnRoutesFound(val routes: List<NavigationRoute>, val routeWithChargers: NavigationRoute? = null, val returnState: ReturnState = ReturnState.Empty) : Event.ChangeStateEvent
Link copied to clipboard
data class OnWaypointAdd(val routes: List<NavigationRoute>, val returnState: ReturnState = ReturnState.Empty) : Event.ChangeStateEvent
Link copied to clipboard