< Summary

Class:Microsoft.Azure.CognitiveServices.Vision.CustomVision.Training.Models.PredictionQueryTag
Assembly:Microsoft.Azure.CognitiveServices.Vision.CustomVision.Training
File(s):C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Vision.CustomVision.Training\src\Generated\Models\PredictionQueryTag.cs
Covered lines:0
Uncovered lines:10
Coverable lines:10
Total lines:58
Line coverage:0% (0 of 10)
Covered branches:0
Total branches:0

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor()-0%100%
.ctor(...)-0%100%
get_Id()-0%100%
get_MinThreshold()-0%100%
get_MaxThreshold()-0%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Vision.CustomVision.Training\src\Generated\Models\PredictionQueryTag.cs

#LineLine coverage
 1// <auto-generated>
 2// Copyright (c) Microsoft Corporation. All rights reserved.
 3// Licensed under the MIT License. See License.txt in the project root for
 4// license information.
 5//
 6// Code generated by Microsoft (R) AutoRest Code Generator.
 7// Changes may cause incorrect behavior and will be lost if the code is
 8// regenerated.
 9// </auto-generated>
 10
 11namespace Microsoft.Azure.CognitiveServices.Vision.CustomVision.Training.Models
 12{
 13    using Newtonsoft.Json;
 14    using System.Linq;
 15
 16    public partial class PredictionQueryTag
 17    {
 18        /// <summary>
 19        /// Initializes a new instance of the PredictionQueryTag class.
 20        /// </summary>
 021        public PredictionQueryTag()
 22        {
 23            CustomInit();
 024        }
 25
 26        /// <summary>
 27        /// Initializes a new instance of the PredictionQueryTag class.
 28        /// </summary>
 029        public PredictionQueryTag(System.Guid id = default(System.Guid), double minThreshold = default(double), double m
 30        {
 031            Id = id;
 032            MinThreshold = minThreshold;
 033            MaxThreshold = maxThreshold;
 34            CustomInit();
 035        }
 36
 37        /// <summary>
 38        /// An initialization method that performs custom operations like setting defaults
 39        /// </summary>
 40        partial void CustomInit();
 41
 42        /// <summary>
 43        /// </summary>
 44        [JsonProperty(PropertyName = "id")]
 045        public System.Guid Id { get; set; }
 46
 47        /// <summary>
 48        /// </summary>
 49        [JsonProperty(PropertyName = "minThreshold")]
 050        public double MinThreshold { get; set; }
 51
 52        /// <summary>
 53        /// </summary>
 54        [JsonProperty(PropertyName = "maxThreshold")]
 055        public double MaxThreshold { get; set; }
 56
 57    }
 58}