< Summary

Class:Microsoft.Azure.CognitiveServices.Vision.Face.Models.Blur
Assembly:Microsoft.Azure.CognitiveServices.Vision.Face
File(s):C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Vision.Face\src\Generated\Models\Blur.cs
Covered lines:3
Uncovered lines:5
Coverable lines:8
Total lines:64
Line coverage:37.5% (3 of 8)
Covered branches:0
Total branches:0

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor()-100%100%
.ctor(...)-0%100%
get_BlurLevel()-100%100%
get_Value()-0%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Vision.Face\src\Generated\Models\Blur.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.Face.Models
 12{
 13    using Newtonsoft.Json;
 14    using System.Linq;
 15
 16    /// <summary>
 17    /// Properties describing any presence of blur within the image.
 18    /// </summary>
 19    public partial class Blur
 20    {
 21        /// <summary>
 22        /// Initializes a new instance of the Blur class.
 23        /// </summary>
 224        public Blur()
 25        {
 26            CustomInit();
 227        }
 28
 29        /// <summary>
 30        /// Initializes a new instance of the Blur class.
 31        /// </summary>
 32        /// <param name="blurLevel">An enum value indicating level of
 33        /// blurriness. Possible values include: 'Low', 'Medium',
 34        /// 'High'</param>
 35        /// <param name="value">A number indicating level of blurriness ranging
 36        /// from 0 to 1.</param>
 037        public Blur(BlurLevel blurLevel = default(BlurLevel), double value = default(double))
 38        {
 039            BlurLevel = blurLevel;
 040            Value = value;
 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 an enum value indicating level of blurriness. Possible
 51        /// values include: 'Low', 'Medium', 'High'
 52        /// </summary>
 53        [JsonProperty(PropertyName = "blurLevel")]
 654        public BlurLevel BlurLevel { get; set; }
 55
 56        /// <summary>
 57        /// Gets or sets a number indicating level of blurriness ranging from 0
 58        /// to 1.
 59        /// </summary>
 60        [JsonProperty(PropertyName = "value")]
 061        public double Value { get; set; }
 62
 63    }
 64}