Performance Data Item

@Serializable
data class PerformanceDataItem(    val data: Map<String, List<PerformanceAnalytic>> = emptyMap(),     val analyticType: PerformanceAnalyticType = LAUNCH_TIME,     val customFiltered: Boolean = false)

The PerformanceDataItem represents the data about a specific type of performance

Author

N7ghtm4r3 - Tecknobit

Constructors

Link copied to clipboard
constructor(    data: Map<String, List<PerformanceAnalytic>> = emptyMap(),     analyticType: PerformanceAnalyticType = LAUNCH_TIME,     customFiltered: Boolean = false)

Properties

Link copied to clipboard
@SerialName(value = "performance_analytic_type" )
val analyticType: PerformanceAnalyticType

The type of the analytic collected

Link copied to clipboard
@SerialName(value = "is_custom_filtered" )
val customFiltered: Boolean = false

Whether the collected data have been filtered with custom filters

Link copied to clipboard

The collected data

Functions

Link copied to clipboard

Method to get the final date of the temporal range of each list present in the .data

Link copied to clipboard

Method to get the initial date of the temporal range of each list present in the .data

Link copied to clipboard

Method to check if there are no data available in the .data instance

Link copied to clipboard

Method to get keys of the .data instance