CommunityAttributes

data class CommunityAttributes(    val probabilityOfOccurrence: ProbabilityOfOccurrence?,     val numberOfReports: Int?,     val lastReportTime: Date?)

Describes data associated with the TrafficIncident that comes from users.

Parameters

probabilityOfOccurrence

Specifies the likelihood of the occurring incident.

numberOfReports

Number of reports given by actual end-users.

lastReportTime

The date when the last time the incident was reported.

Constructors

Link copied to clipboard
fun CommunityAttributes(    probabilityOfOccurrence: ProbabilityOfOccurrence?,     numberOfReports: Int?,     lastReportTime: Date?)

Properties

Link copied to clipboard
val lastReportTime: Date?
Link copied to clipboard
val numberOfReports: Int?
Link copied to clipboard
val probabilityOfOccurrence: ProbabilityOfOccurrence?