< Summary

Class:Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.Models.HierarchicalModel
Assembly:Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring
File(s):C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Language.LUIS.Authoring\src\Generated\Models\HierarchicalModel.cs
Covered lines:7
Uncovered lines:7
Coverable lines:14
Total lines:72
Line coverage:50% (7 of 14)
Covered branches:0
Total branches:0

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor()-100%100%
.ctor(...)-0%100%
get_Name()-100%100%
get_Children()-100%100%
get_Features()-100%100%
get_Roles()-100%100%
get_Inherits()-100%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Language.LUIS.Authoring\src\Generated\Models\HierarchicalModel.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.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>
 2623        public HierarchicalModel()
 24        {
 25            CustomInit();
 2626        }
 27
 28        /// <summary>
 29        /// Initializes a new instance of the HierarchicalModel class.
 30        /// </summary>
 031        public HierarchicalModel(string name = default(string), IList<JsonChild> children = default(IList<JsonChild>), I
 32        {
 033            Name = name;
 034            Children = children;
 035            Features = features;
 036            Roles = roles;
 037            Inherits = inherits;
 38            CustomInit();
 039        }
 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")]
 5149        public string Name { get; set; }
 50
 51        /// <summary>
 52        /// </summary>
 53        [JsonProperty(PropertyName = "children")]
 3554        public IList<JsonChild> Children { get; set; }
 55
 56        /// <summary>
 57        /// </summary>
 58        [JsonProperty(PropertyName = "features")]
 4759        public IList<JsonModelFeatureInformation> Features { get; set; }
 60
 61        /// <summary>
 62        /// </summary>
 63        [JsonProperty(PropertyName = "roles")]
 3564        public IList<string> Roles { get; set; }
 65
 66        /// <summary>
 67        /// </summary>
 68        [JsonProperty(PropertyName = "inherits")]
 3569        public PrebuiltDomainObject Inherits { get; set; }
 70
 71    }
 72}