//----------------------------------------------------------------------- // // Copyright (c) 2017 Mapbox. All rights reserved. // //----------------------------------------------------------------------- namespace Mapbox.MapMatching { using Mapbox.Directions; using Mapbox.Json; /// /// A Match object from a Map Matching API call. /// public class MatchObject : Route { /// /// A number between 0 (low) and 1 (high) indicating level of confidence in the returned match /// [JsonProperty("confidence")] public float Confidence { get; set; } } }