< Summary

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

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor()-100%100%
.ctor(...)-0%100%
get_Name()-100%100%
get_Confidence()-100%100%
get_FaceRectangle()-100%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Vision.ComputerVision\src\Generated\Models\CelebritiesModel.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 describing possible celebrity identification.
 18    /// </summary>
 19    public partial class CelebritiesModel
 20    {
 21        /// <summary>
 22        /// Initializes a new instance of the CelebritiesModel class.
 23        /// </summary>
 424        public CelebritiesModel()
 25        {
 26            CustomInit();
 427        }
 28
 29        /// <summary>
 30        /// Initializes a new instance of the CelebritiesModel class.
 31        /// </summary>
 32        /// <param name="name">Name of the celebrity.</param>
 33        /// <param name="confidence">Confidence level for the celebrity
 34        /// recognition as a value ranging from 0 to 1.</param>
 35        /// <param name="faceRectangle">Location of the identified face in the
 36        /// image.</param>
 037        public CelebritiesModel(string name = default(string), double confidence = default(double), FaceRectangle faceRe
 38        {
 039            Name = name;
 040            Confidence = confidence;
 041            FaceRectangle = faceRectangle;
 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 or sets name of the celebrity.
 52        /// </summary>
 53        [JsonProperty(PropertyName = "name")]
 854        public string Name { get; set; }
 55
 56        /// <summary>
 57        /// Gets or sets confidence level for the celebrity recognition as a
 58        /// value ranging from 0 to 1.
 59        /// </summary>
 60        [JsonProperty(PropertyName = "confidence")]
 861        public double Confidence { get; set; }
 62
 63        /// <summary>
 64        /// Gets or sets location of the identified face in the image.
 65        /// </summary>
 66        [JsonProperty(PropertyName = "faceRectangle")]
 1667        public FaceRectangle FaceRectangle { get; set; }
 68
 69    }
 70}