< Summary

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

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor()-0%100%
.ctor(...)-0%100%
get_Id()-0%100%
get_Name()-0%100%
get_TypeId()-0%100%
get_ReadableType()-0%100%
get_Roles()-0%100%
get_Children()-0%100%
Validate()-0%0%

File(s)

C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Language.LUIS.Authoring\src\Generated\Models\HierarchicalEntityExtractor.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 Microsoft.Rest;
 14    using Newtonsoft.Json;
 15    using System.Collections;
 16    using System.Collections.Generic;
 17    using System.Linq;
 18
 19    /// <summary>
 20    /// Hierarchical Entity Extractor.
 21    /// </summary>
 22    public partial class HierarchicalEntityExtractor
 23    {
 24        /// <summary>
 25        /// Initializes a new instance of the HierarchicalEntityExtractor
 26        /// class.
 27        /// </summary>
 028        public HierarchicalEntityExtractor()
 29        {
 30            CustomInit();
 031        }
 32
 33        /// <summary>
 34        /// Initializes a new instance of the HierarchicalEntityExtractor
 35        /// class.
 36        /// </summary>
 37        /// <param name="id">The ID of the Entity Model.</param>
 38        /// <param name="readableType">Possible values include: 'Entity
 39        /// Extractor', 'Child Entity Extractor', 'Hierarchical Entity
 40        /// Extractor', 'Hierarchical Child Entity Extractor', 'Composite
 41        /// Entity Extractor', 'List Entity Extractor', 'Prebuilt Entity
 42        /// Extractor', 'Intent Classifier', 'Pattern.Any Entity Extractor',
 43        /// 'Closed List Entity Extractor', 'Regex Entity Extractor'</param>
 44        /// <param name="name">Name of the Entity Model.</param>
 45        /// <param name="typeId">The type ID of the Entity Model.</param>
 46        /// <param name="children">List of child entities.</param>
 047        public HierarchicalEntityExtractor(System.Guid id, string readableType, string name = default(string), int? type
 48        {
 049            Id = id;
 050            Name = name;
 051            TypeId = typeId;
 052            ReadableType = readableType;
 053            Roles = roles;
 054            Children = children;
 55            CustomInit();
 056        }
 57
 58        /// <summary>
 59        /// An initialization method that performs custom operations like setting defaults
 60        /// </summary>
 61        partial void CustomInit();
 62
 63        /// <summary>
 64        /// Gets or sets the ID of the Entity Model.
 65        /// </summary>
 66        [JsonProperty(PropertyName = "id")]
 067        public System.Guid Id { get; set; }
 68
 69        /// <summary>
 70        /// Gets or sets name of the Entity Model.
 71        /// </summary>
 72        [JsonProperty(PropertyName = "name")]
 073        public string Name { get; set; }
 74
 75        /// <summary>
 76        /// Gets or sets the type ID of the Entity Model.
 77        /// </summary>
 78        [JsonProperty(PropertyName = "typeId")]
 079        public int? TypeId { get; set; }
 80
 81        /// <summary>
 82        /// Gets or sets possible values include: 'Entity Extractor', 'Child
 83        /// Entity Extractor', 'Hierarchical Entity Extractor', 'Hierarchical
 84        /// Child Entity Extractor', 'Composite Entity Extractor', 'List Entity
 85        /// Extractor', 'Prebuilt Entity Extractor', 'Intent Classifier',
 86        /// 'Pattern.Any Entity Extractor', 'Closed List Entity Extractor',
 87        /// 'Regex Entity Extractor'
 88        /// </summary>
 89        [JsonProperty(PropertyName = "readableType")]
 090        public string ReadableType { get; set; }
 91
 92        /// <summary>
 93        /// </summary>
 94        [JsonProperty(PropertyName = "roles")]
 095        public IList<EntityRole> Roles { get; set; }
 96
 97        /// <summary>
 98        /// Gets or sets list of child entities.
 99        /// </summary>
 100        [JsonProperty(PropertyName = "children")]
 0101        public IList<ChildEntity> Children { get; set; }
 102
 103        /// <summary>
 104        /// Validate the object.
 105        /// </summary>
 106        /// <exception cref="ValidationException">
 107        /// Thrown if validation fails
 108        /// </exception>
 109        public virtual void Validate()
 110        {
 0111            if (ReadableType == null)
 112            {
 0113                throw new ValidationException(ValidationRules.CannotBeNull, "ReadableType");
 114            }
 0115            if (Children != null)
 116            {
 0117                foreach (var element in Children)
 118                {
 0119                    if (element != null)
 120                    {
 0121                        element.Validate();
 122                    }
 123                }
 124            }
 0125        }
 126    }
 127}