| | 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.Language.LUIS.Authoring.Models |
| | 12 | | { |
| | 13 | | using Newtonsoft.Json; |
| | 14 | | using System.Collections; |
| | 15 | | using System.Collections.Generic; |
| | 16 | | using System.Linq; |
| | 17 | |
|
| | 18 | | /// <summary> |
| | 19 | | /// A labeled example utterance. |
| | 20 | | /// </summary> |
| | 21 | | public partial class ExampleLabelObject |
| | 22 | | { |
| | 23 | | /// <summary> |
| | 24 | | /// Initializes a new instance of the ExampleLabelObject class. |
| | 25 | | /// </summary> |
| 7 | 26 | | public ExampleLabelObject() |
| | 27 | | { |
| | 28 | | CustomInit(); |
| 7 | 29 | | } |
| | 30 | |
|
| | 31 | | /// <summary> |
| | 32 | | /// Initializes a new instance of the ExampleLabelObject class. |
| | 33 | | /// </summary> |
| | 34 | | /// <param name="text">The example utterance.</param> |
| | 35 | | /// <param name="entityLabels">The identified entities within the |
| | 36 | | /// example utterance.</param> |
| | 37 | | /// <param name="intentName">The identified intent representing the |
| | 38 | | /// example utterance.</param> |
| 0 | 39 | | public ExampleLabelObject(string text = default(string), IList<EntityLabelObject> entityLabels = default(IList<E |
| | 40 | | { |
| 0 | 41 | | Text = text; |
| 0 | 42 | | EntityLabels = entityLabels; |
| 0 | 43 | | IntentName = intentName; |
| | 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 the example utterance. |
| | 54 | | /// </summary> |
| | 55 | | [JsonProperty(PropertyName = "text")] |
| 17 | 56 | | public string Text { get; set; } |
| | 57 | |
|
| | 58 | | /// <summary> |
| | 59 | | /// Gets or sets the identified entities within the example utterance. |
| | 60 | | /// </summary> |
| | 61 | | [JsonProperty(PropertyName = "entityLabels")] |
| 15 | 62 | | public IList<EntityLabelObject> EntityLabels { get; set; } |
| | 63 | |
|
| | 64 | | /// <summary> |
| | 65 | | /// Gets or sets the identified intent representing the example |
| | 66 | | /// utterance. |
| | 67 | | /// </summary> |
| | 68 | | [JsonProperty(PropertyName = "intentName")] |
| 14 | 69 | | public string IntentName { get; set; } |
| | 70 | |
|
| | 71 | | } |
| | 72 | | } |