Package-level declarations

Types

Link copied to clipboard
data class CoreFeed(val campaignId: String = "", val label: List<FeedLabels> = emptyList(), val feature: List<FeedFeatures> = emptyList(), val startDate: Date? = null, val endDate: Date? = null, val startTime: String = "", val endingTime: String = "", val eventButtonName: String = "", val headline: String = "", val title: String, val imageUrls: List<String> = mutableListOf(), val description: String)

This data provides a minimal data points that required to show feed on the for poi screen. This class instance will be converted to the Event class from MapUi and then Event class object is consumed by ui. This model introduced solely to eliminate the dependency of map-ui only.

Link copied to clipboard
data class FeedFeatures(val text: String, val iconUrl: String)
Link copied to clipboard
data class FeedLabels(val text: String, val bgColor: String, val textColor: String)