< Summary

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

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor()-0%100%
.ctor(...)-0%100%
get_Name()-0%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Language.LUIS.Authoring\src\Generated\Models\HierarchicalChildModelUpdateObject.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.Linq;
 15
 16    public partial class HierarchicalChildModelUpdateObject
 17    {
 18        /// <summary>
 19        /// Initializes a new instance of the
 20        /// HierarchicalChildModelUpdateObject class.
 21        /// </summary>
 022        public HierarchicalChildModelUpdateObject()
 23        {
 24            CustomInit();
 025        }
 26
 27        /// <summary>
 28        /// Initializes a new instance of the
 29        /// HierarchicalChildModelUpdateObject class.
 30        /// </summary>
 031        public HierarchicalChildModelUpdateObject(string name = default(string))
 32        {
 033            Name = name;
 34            CustomInit();
 035        }
 36
 37        /// <summary>
 38        /// An initialization method that performs custom operations like setting defaults
 39        /// </summary>
 40        partial void CustomInit();
 41
 42        /// <summary>
 43        /// </summary>
 44        [JsonProperty(PropertyName = "name")]
 045        public string Name { get; set; }
 46
 47    }
 48}

Methods/Properties

.ctor()
.ctor(...)
get_Name()