< Summary

Class:Microsoft.Azure.CognitiveServices.Vision.ComputerVision.Models.DetectedBrand
Assembly:Microsoft.Azure.CognitiveServices.Vision.ComputerVision
File(s):C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Vision.ComputerVision\src\Generated\Models\DetectedBrand.cs
Covered lines:0
Uncovered lines:10
Coverable lines:10
Total lines:70
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_Name()-0%100%
get_Confidence()-0%100%
get_Rectangle()-0%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Vision.ComputerVision\src\Generated\Models\DetectedBrand.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    /// A brand detected in an image.
 18    /// </summary>
 19    public partial class DetectedBrand
 20    {
 21        /// <summary>
 22        /// Initializes a new instance of the DetectedBrand class.
 23        /// </summary>
 024        public DetectedBrand()
 25        {
 26            CustomInit();
 027        }
 28
 29        /// <summary>
 30        /// Initializes a new instance of the DetectedBrand class.
 31        /// </summary>
 32        /// <param name="name">Label for the brand.</param>
 33        /// <param name="confidence">Confidence score of having observed the
 34        /// brand in the image, as a value ranging from 0 to 1.</param>
 35        /// <param name="rectangle">Approximate location of the detected
 36        /// brand.</param>
 037        public DetectedBrand(string name = default(string), double confidence = default(double), BoundingRect rectangle 
 38        {
 039            Name = name;
 040            Confidence = confidence;
 041            Rectangle = rectangle;
 42            CustomInit();
 043        }
 44
 45        /// <summary>
 46        /// An initialization method that performs custom operations like setting defaults
 47        /// </summary>
 48        partial void CustomInit();
 49
 50        /// <summary>
 51        /// Gets label for the brand.
 52        /// </summary>
 53        [JsonProperty(PropertyName = "name")]
 054        public string Name { get; private set; }
 55
 56        /// <summary>
 57        /// Gets confidence score of having observed the brand in the image, as
 58        /// a value ranging from 0 to 1.
 59        /// </summary>
 60        [JsonProperty(PropertyName = "confidence")]
 061        public double Confidence { get; private set; }
 62
 63        /// <summary>
 64        /// Gets approximate location of the detected brand.
 65        /// </summary>
 66        [JsonProperty(PropertyName = "rectangle")]
 067        public BoundingRect Rectangle { get; private set; }
 68
 69    }
 70}