| | 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 | | public partial class HierarchicalModel |
| | 19 | | { |
| | 20 | | /// <summary> |
| | 21 | | /// Initializes a new instance of the HierarchicalModel class. |
| | 22 | | /// </summary> |
| 26 | 23 | | public HierarchicalModel() |
| | 24 | | { |
| | 25 | | CustomInit(); |
| 26 | 26 | | } |
| | 27 | |
|
| | 28 | | /// <summary> |
| | 29 | | /// Initializes a new instance of the HierarchicalModel class. |
| | 30 | | /// </summary> |
| 0 | 31 | | public HierarchicalModel(string name = default(string), IList<JsonChild> children = default(IList<JsonChild>), I |
| | 32 | | { |
| 0 | 33 | | Name = name; |
| 0 | 34 | | Children = children; |
| 0 | 35 | | Features = features; |
| 0 | 36 | | Roles = roles; |
| 0 | 37 | | Inherits = inherits; |
| | 38 | | CustomInit(); |
| 0 | 39 | | } |
| | 40 | |
|
| | 41 | | /// <summary> |
| | 42 | | /// An initialization method that performs custom operations like setting defaults |
| | 43 | | /// </summary> |
| | 44 | | partial void CustomInit(); |
| | 45 | |
|
| | 46 | | /// <summary> |
| | 47 | | /// </summary> |
| | 48 | | [JsonProperty(PropertyName = "name")] |
| 51 | 49 | | public string Name { get; set; } |
| | 50 | |
|
| | 51 | | /// <summary> |
| | 52 | | /// </summary> |
| | 53 | | [JsonProperty(PropertyName = "children")] |
| 35 | 54 | | public IList<JsonChild> Children { get; set; } |
| | 55 | |
|
| | 56 | | /// <summary> |
| | 57 | | /// </summary> |
| | 58 | | [JsonProperty(PropertyName = "features")] |
| 47 | 59 | | public IList<JsonModelFeatureInformation> Features { get; set; } |
| | 60 | |
|
| | 61 | | /// <summary> |
| | 62 | | /// </summary> |
| | 63 | | [JsonProperty(PropertyName = "roles")] |
| 35 | 64 | | public IList<string> Roles { get; set; } |
| | 65 | |
|
| | 66 | | /// <summary> |
| | 67 | | /// </summary> |
| | 68 | | [JsonProperty(PropertyName = "inherits")] |
| 35 | 69 | | public PrebuiltDomainObject Inherits { get; set; } |
| | 70 | |
|
| | 71 | | } |
| | 72 | | } |