RoadBucketStatistic
@available(*, deprecated, message: "This edge-side API will be removed in future versions. Use cloud APIs instead.")
@objcMembers
public class RoadBucketStatistic : NSObject, Codable
Road bucket statistic data containing information about trips and events for a specific road type.
-
The name/type of the road bucket (e.g., “Ramps”, “Highways & Freeways”, “Intersections”).
Declaration
Swift
@objc public let bucketName: String? -
Aggregated information about trips in this road bucket.
Declaration
Swift
@objc public let bucketTripsInfo: BucketTripsInfo? -
List of event statistics for different event types in this road bucket.
Declaration
Swift
public let eventStatistics: [BucketEventStatistic]? -
Undocumented
Declaration
Swift
public init( bucketName: String? = nil, bucketTripsInfo: BucketTripsInfo? = nil, eventStatistics: [BucketEventStatistic]? = nil ) -
Declaration
Swift
public required init(from decoder: Decoder) throws -
Declaration
Swift
public func encode(to encoder: Encoder) throws