< Summary

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

File(s)

C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Vision.ComputerVision\src\Generated\Models\ObjectHierarchy.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 detected inside an image.
 18    /// </summary>
 19    public partial class ObjectHierarchy
 20    {
 21        /// <summary>
 22        /// Initializes a new instance of the ObjectHierarchy class.
 23        /// </summary>
 024        public ObjectHierarchy()
 25        {
 26            CustomInit();
 027        }
 28
 29        /// <summary>
 30        /// Initializes a new instance of the ObjectHierarchy class.
 31        /// </summary>
 32        /// <param name="objectProperty">Label for the object.</param>
 33        /// <param name="confidence">Confidence score of having observed the
 34        /// object in the image, as a value ranging from 0 to 1.</param>
 35        /// <param name="parent">The parent object, from a taxonomy
 36        /// perspective.
 37        /// The parent object is a more generic form of this object.  For
 38        /// example, a 'bulldog' would have a parent of 'dog'.</param>
 039        public ObjectHierarchy(string objectProperty = default(string), double confidence = default(double), ObjectHiera
 40        {
 041            ObjectProperty = objectProperty;
 042            Confidence = confidence;
 043            Parent = parent;
 44            CustomInit();
 045        }
 46
 47        /// <summary>
 48        /// An initialization method that performs custom operations like setting defaults
 49        /// </summary>
 50        partial void CustomInit();
 51
 52        /// <summary>
 53        /// Gets or sets label for the object.
 54        /// </summary>
 55        [JsonProperty(PropertyName = "object")]
 056        public string ObjectProperty { get; set; }
 57
 58        /// <summary>
 59        /// Gets or sets confidence score of having observed the object in the
 60        /// image, as a value ranging from 0 to 1.
 61        /// </summary>
 62        [JsonProperty(PropertyName = "confidence")]
 063        public double Confidence { get; set; }
 64
 65        /// <summary>
 66        /// Gets or sets the parent object, from a taxonomy perspective.
 67        /// The parent object is a more generic form of this object.  For
 68        /// example, a 'bulldog' would have a parent of 'dog'.
 69        /// </summary>
 70        [JsonProperty(PropertyName = "parent")]
 071        public ObjectHierarchy Parent { get; set; }
 72
 73    }
 74}