< Summary

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

Metrics

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

File(s)

C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Language.LUIS.Authoring\src\Generated\Models\NDepthEntityExtractor.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    /// N-Depth Entity Extractor.
 21    /// </summary>
 22    public partial class NDepthEntityExtractor
 23    {
 24        /// <summary>
 25        /// Initializes a new instance of the NDepthEntityExtractor class.
 26        /// </summary>
 1727        public NDepthEntityExtractor()
 28        {
 29            CustomInit();
 1730        }
 31
 32        /// <summary>
 33        /// Initializes a new instance of the NDepthEntityExtractor class.
 34        /// </summary>
 35        /// <param name="id">The ID of the Entity Model.</param>
 36        /// <param name="readableType">Possible values include: 'Entity
 37        /// Extractor', 'Child Entity Extractor', 'Hierarchical Entity
 38        /// Extractor', 'Hierarchical Child Entity Extractor', 'Composite
 39        /// Entity Extractor', 'List Entity Extractor', 'Prebuilt Entity
 40        /// Extractor', 'Intent Classifier', 'Pattern.Any Entity Extractor',
 41        /// 'Closed List Entity Extractor', 'Regex Entity Extractor'</param>
 42        /// <param name="name">Name of the Entity Model.</param>
 43        /// <param name="typeId">The type ID of the Entity Model.</param>
 44        /// <param name="customPrebuiltDomainName">The domain name.</param>
 45        /// <param name="customPrebuiltModelName">The intent name or entity
 46        /// name.</param>
 047        public NDepthEntityExtractor(System.Guid id, string readableType, string name = default(string), int? typeId = d
 48        {
 049            Id = id;
 050            Name = name;
 051            TypeId = typeId;
 052            ReadableType = readableType;
 053            Roles = roles;
 054            CustomPrebuiltDomainName = customPrebuiltDomainName;
 055            CustomPrebuiltModelName = customPrebuiltModelName;
 056            Children = children;
 57            CustomInit();
 058        }
 59
 60        /// <summary>
 61        /// An initialization method that performs custom operations like setting defaults
 62        /// </summary>
 63        partial void CustomInit();
 64
 65        /// <summary>
 66        /// Gets or sets the ID of the Entity Model.
 67        /// </summary>
 68        [JsonProperty(PropertyName = "id")]
 2369        public System.Guid Id { get; set; }
 70
 71        /// <summary>
 72        /// Gets or sets name of the Entity Model.
 73        /// </summary>
 74        [JsonProperty(PropertyName = "name")]
 2775        public string Name { get; set; }
 76
 77        /// <summary>
 78        /// Gets or sets the type ID of the Entity Model.
 79        /// </summary>
 80        [JsonProperty(PropertyName = "typeId")]
 081        public int? TypeId { get; set; }
 82
 83        /// <summary>
 84        /// Gets or sets possible values include: 'Entity Extractor', 'Child
 85        /// Entity Extractor', 'Hierarchical Entity Extractor', 'Hierarchical
 86        /// Child Entity Extractor', 'Composite Entity Extractor', 'List Entity
 87        /// Extractor', 'Prebuilt Entity Extractor', 'Intent Classifier',
 88        /// 'Pattern.Any Entity Extractor', 'Closed List Entity Extractor',
 89        /// 'Regex Entity Extractor'
 90        /// </summary>
 91        [JsonProperty(PropertyName = "readableType")]
 1992        public string ReadableType { get; set; }
 93
 94        /// <summary>
 95        /// </summary>
 96        [JsonProperty(PropertyName = "roles")]
 3297        public IList<EntityRole> Roles { get; set; }
 98
 99        /// <summary>
 100        /// Gets or sets the domain name.
 101        /// </summary>
 102        [JsonProperty(PropertyName = "customPrebuiltDomainName")]
 0103        public string CustomPrebuiltDomainName { get; set; }
 104
 105        /// <summary>
 106        /// Gets or sets the intent name or entity name.
 107        /// </summary>
 108        [JsonProperty(PropertyName = "customPrebuiltModelName")]
 0109        public string CustomPrebuiltModelName { get; set; }
 110
 111        /// <summary>
 112        /// </summary>
 113        [JsonProperty(PropertyName = "children")]
 39114        public IList<ChildEntity> Children { get; set; }
 115
 116        /// <summary>
 117        /// Validate the object.
 118        /// </summary>
 119        /// <exception cref="ValidationException">
 120        /// Thrown if validation fails
 121        /// </exception>
 122        public virtual void Validate()
 123        {
 0124            if (ReadableType == null)
 125            {
 0126                throw new ValidationException(ValidationRules.CannotBeNull, "ReadableType");
 127            }
 0128            if (Children != null)
 129            {
 0130                foreach (var element in Children)
 131                {
 0132                    if (element != null)
 133                    {
 0134                        element.Validate();
 135                    }
 136                }
 137            }
 0138        }
 139    }
 140}