< Summary

Class:Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.Models.HierarchicalChildEntity
Assembly:Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring
File(s):C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Language.LUIS.Authoring\src\Generated\Models\HierarchicalChildEntity.cs
Covered lines:0
Uncovered lines:6
Coverable lines:6
Total lines:66
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%
Validate()-0%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Language.LUIS.Authoring\src\Generated\Models\HierarchicalChildEntity.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 System.Collections;
 14    using System.Collections.Generic;
 15    using System.Linq;
 16
 17    /// <summary>
 18    /// A Hierarchical Child Entity.
 19    /// </summary>
 20    public partial class HierarchicalChildEntity : ChildEntity
 21    {
 22        /// <summary>
 23        /// Initializes a new instance of the HierarchicalChildEntity class.
 24        /// </summary>
 025        public HierarchicalChildEntity()
 26        {
 27            CustomInit();
 028        }
 29
 30        /// <summary>
 31        /// Initializes a new instance of the HierarchicalChildEntity class.
 32        /// </summary>
 33        /// <param name="id">The ID (GUID) belonging to a child entity.</param>
 34        /// <param name="name">The name of a child entity.</param>
 35        /// <param name="instanceOf">Instance of Model.</param>
 36        /// <param name="typeId">The type ID of the Entity Model.</param>
 37        /// <param name="readableType">Possible values include: 'Entity
 38        /// Extractor', 'Child Entity Extractor', 'Hierarchical Entity
 39        /// Extractor', 'Hierarchical Child Entity Extractor', 'Composite
 40        /// Entity Extractor', 'List Entity Extractor', 'Prebuilt Entity
 41        /// Extractor', 'Intent Classifier', 'Pattern.Any Entity Extractor',
 42        /// 'Closed List Entity Extractor', 'Regex Entity Extractor'</param>
 43        /// <param name="children">List of children</param>
 44        public HierarchicalChildEntity(System.Guid id, string name = default(string), string instanceOf = default(string
 045            : base(id, name, instanceOf, typeId, readableType, children)
 46        {
 47            CustomInit();
 048        }
 49
 50        /// <summary>
 51        /// An initialization method that performs custom operations like setting defaults
 52        /// </summary>
 53        partial void CustomInit();
 54
 55        /// <summary>
 56        /// Validate the object.
 57        /// </summary>
 58        /// <exception cref="Rest.ValidationException">
 59        /// Thrown if validation fails
 60        /// </exception>
 61        public override void Validate()
 62        {
 063            base.Validate();
 064        }
 65    }
 66}

Methods/Properties

.ctor()
.ctor(...)
Validate()