| | 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 | |
|
| | 11 | | namespace 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> |
| 2 | 24 | | public Blur() |
| | 25 | | { |
| | 26 | | CustomInit(); |
| 2 | 27 | | } |
| | 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> |
| 0 | 37 | | public Blur(BlurLevel blurLevel = default(BlurLevel), double value = default(double)) |
| | 38 | | { |
| 0 | 39 | | BlurLevel = blurLevel; |
| 0 | 40 | | Value = value; |
| | 41 | | CustomInit(); |
| 0 | 42 | | } |
| | 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")] |
| 6 | 54 | | 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")] |
| 0 | 61 | | public double Value { get; set; } |
| | 62 | |
|
| | 63 | | } |
| | 64 | | } |