| | 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.ComputerVision.Models |
| | 12 | | { |
| | 13 | | using Microsoft.Rest; |
| | 14 | | using Newtonsoft.Json; |
| | 15 | | using System.Collections; |
| | 16 | | using System.Collections.Generic; |
| | 17 | | using System.Linq; |
| | 18 | |
|
| | 19 | | /// <summary> |
| | 20 | | /// An object representing a recognized word. |
| | 21 | | /// </summary> |
| | 22 | | public partial class Word |
| | 23 | | { |
| | 24 | | /// <summary> |
| | 25 | | /// Initializes a new instance of the Word class. |
| | 26 | | /// </summary> |
| 0 | 27 | | public Word() |
| | 28 | | { |
| | 29 | | CustomInit(); |
| 0 | 30 | | } |
| | 31 | |
|
| | 32 | | /// <summary> |
| | 33 | | /// Initializes a new instance of the Word class. |
| | 34 | | /// </summary> |
| | 35 | | /// <param name="boundingBox">Bounding box of a recognized |
| | 36 | | /// word.</param> |
| | 37 | | /// <param name="text">The text content of the word.</param> |
| | 38 | | /// <param name="confidence">Qualitative confidence measure.</param> |
| 0 | 39 | | public Word(IList<double?> boundingBox, string text, double confidence) |
| | 40 | | { |
| 0 | 41 | | BoundingBox = boundingBox; |
| 0 | 42 | | Text = text; |
| 0 | 43 | | Confidence = confidence; |
| | 44 | | CustomInit(); |
| 0 | 45 | | } |
| | 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 bounding box of a recognized word. |
| | 54 | | /// </summary> |
| | 55 | | [JsonProperty(PropertyName = "boundingBox")] |
| 0 | 56 | | public IList<double?> BoundingBox { get; set; } |
| | 57 | |
|
| | 58 | | /// <summary> |
| | 59 | | /// Gets or sets the text content of the word. |
| | 60 | | /// </summary> |
| | 61 | | [JsonProperty(PropertyName = "text")] |
| 0 | 62 | | public string Text { get; set; } |
| | 63 | |
|
| | 64 | | /// <summary> |
| | 65 | | /// Gets or sets qualitative confidence measure. |
| | 66 | | /// </summary> |
| | 67 | | [JsonProperty(PropertyName = "confidence")] |
| 0 | 68 | | public double Confidence { get; set; } |
| | 69 | |
|
| | 70 | | /// <summary> |
| | 71 | | /// Validate the object. |
| | 72 | | /// </summary> |
| | 73 | | /// <exception cref="ValidationException"> |
| | 74 | | /// Thrown if validation fails |
| | 75 | | /// </exception> |
| | 76 | | public virtual void Validate() |
| | 77 | | { |
| 0 | 78 | | if (BoundingBox == null) |
| | 79 | | { |
| 0 | 80 | | throw new ValidationException(ValidationRules.CannotBeNull, "BoundingBox"); |
| | 81 | | } |
| 0 | 82 | | if (Text == null) |
| | 83 | | { |
| 0 | 84 | | throw new ValidationException(ValidationRules.CannotBeNull, "Text"); |
| | 85 | | } |
| 0 | 86 | | } |
| | 87 | | } |
| | 88 | | } |