< Summary

Class:Microsoft.Azure.CognitiveServices.Vision.ComputerVision.Models.ImageType
Assembly:Microsoft.Azure.CognitiveServices.Vision.ComputerVision
File(s):C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Vision.ComputerVision\src\Generated\Models\ImageType.cs
Covered lines:2
Uncovered lines:6
Coverable lines:8
Total lines:62
Line coverage:25% (2 of 8)
Covered branches:0
Total branches:0

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor()-100%100%
.ctor(...)-0%100%
get_ClipArtType()-0%100%
get_LineDrawingType()-0%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Vision.ComputerVision\src\Generated\Models\ImageType.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.ComputerVision.Models
 12{
 13    using Newtonsoft.Json;
 14    using System.Linq;
 15
 16    /// <summary>
 17    /// An object providing possible image types and matching confidence
 18    /// levels.
 19    /// </summary>
 20    public partial class ImageType
 21    {
 22        /// <summary>
 23        /// Initializes a new instance of the ImageType class.
 24        /// </summary>
 425        public ImageType()
 26        {
 27            CustomInit();
 428        }
 29
 30        /// <summary>
 31        /// Initializes a new instance of the ImageType class.
 32        /// </summary>
 33        /// <param name="clipArtType">Confidence level that the image is a clip
 34        /// art.</param>
 35        /// <param name="lineDrawingType">Confidence level that the image is a
 36        /// line drawing.</param>
 037        public ImageType(int clipArtType = default(int), int lineDrawingType = default(int))
 38        {
 039            ClipArtType = clipArtType;
 040            LineDrawingType = lineDrawingType;
 41            CustomInit();
 042        }
 43
 44        /// <summary>
 45        /// An initialization method that performs custom operations like setting defaults
 46        /// </summary>
 47        partial void CustomInit();
 48
 49        /// <summary>
 50        /// Gets or sets confidence level that the image is a clip art.
 51        /// </summary>
 52        [JsonProperty(PropertyName = "clipArtType")]
 053        public int ClipArtType { get; set; }
 54
 55        /// <summary>
 56        /// Gets or sets confidence level that the image is a line drawing.
 57        /// </summary>
 58        [JsonProperty(PropertyName = "lineDrawingType")]
 059        public int LineDrawingType { get; set; }
 60
 61    }
 62}