< Summary

Class:Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.Models.HierarchicalModelV2
Assembly:Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring
File(s):C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Language.LUIS.Authoring\src\Generated\Models\HierarchicalModelV2.cs
Covered lines:3
Uncovered lines:9
Coverable lines:12
Total lines:66
Line coverage:25% (3 of 12)
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()-0%100%
get_Inherits()-0%100%
get_Roles()-0%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Language.LUIS.Authoring\src\Generated\Models\HierarchicalModelV2.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 HierarchicalModelV2
 19    {
 20        /// <summary>
 21        /// Initializes a new instance of the HierarchicalModelV2 class.
 22        /// </summary>
 1423        public HierarchicalModelV2()
 24        {
 25            CustomInit();
 1426        }
 27
 28        /// <summary>
 29        /// Initializes a new instance of the HierarchicalModelV2 class.
 30        /// </summary>
 031        public HierarchicalModelV2(string name = default(string), IList<string> children = default(IList<string>), Prebu
 32        {
 033            Name = name;
 034            Children = children;
 035            Inherits = inherits;
 036            Roles = roles;
 37            CustomInit();
 038        }
 39
 40        /// <summary>
 41        /// An initialization method that performs custom operations like setting defaults
 42        /// </summary>
 43        partial void CustomInit();
 44
 45        /// <summary>
 46        /// </summary>
 47        [JsonProperty(PropertyName = "name")]
 2848        public string Name { get; set; }
 49
 50        /// <summary>
 51        /// </summary>
 52        [JsonProperty(PropertyName = "children")]
 053        public IList<string> Children { get; set; }
 54
 55        /// <summary>
 56        /// </summary>
 57        [JsonProperty(PropertyName = "inherits")]
 058        public PrebuiltDomainObject Inherits { get; set; }
 59
 60        /// <summary>
 61        /// </summary>
 62        [JsonProperty(PropertyName = "roles")]
 063        public IList<string> Roles { get; set; }
 64
 65    }
 66}