< Summary

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

Metrics

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

File(s)

C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Language.LUIS.Authoring\src\Generated\Models\PatternAnyEntityExtractor.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    /// Pattern.Any Entity Extractor.
 21    /// </summary>
 22    public partial class PatternAnyEntityExtractor
 23    {
 24        /// <summary>
 25        /// Initializes a new instance of the PatternAnyEntityExtractor class.
 26        /// </summary>
 427        public PatternAnyEntityExtractor()
 28        {
 29            CustomInit();
 430        }
 31
 32        /// <summary>
 33        /// Initializes a new instance of the PatternAnyEntityExtractor 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>
 044        public PatternAnyEntityExtractor(System.Guid id, string readableType, string name = default(string), int? typeId
 45        {
 046            Id = id;
 047            Name = name;
 048            TypeId = typeId;
 049            ReadableType = readableType;
 050            Roles = roles;
 051            ExplicitList = explicitList;
 52            CustomInit();
 053        }
 54
 55        /// <summary>
 56        /// An initialization method that performs custom operations like setting defaults
 57        /// </summary>
 58        partial void CustomInit();
 59
 60        /// <summary>
 61        /// Gets or sets the ID of the Entity Model.
 62        /// </summary>
 63        [JsonProperty(PropertyName = "id")]
 064        public System.Guid Id { get; set; }
 65
 66        /// <summary>
 67        /// Gets or sets name of the Entity Model.
 68        /// </summary>
 69        [JsonProperty(PropertyName = "name")]
 970        public string Name { get; set; }
 71
 72        /// <summary>
 73        /// Gets or sets the type ID of the Entity Model.
 74        /// </summary>
 75        [JsonProperty(PropertyName = "typeId")]
 076        public int? TypeId { get; set; }
 77
 78        /// <summary>
 79        /// Gets or sets possible values include: 'Entity Extractor', 'Child
 80        /// Entity Extractor', 'Hierarchical Entity Extractor', 'Hierarchical
 81        /// Child Entity Extractor', 'Composite Entity Extractor', 'List Entity
 82        /// Extractor', 'Prebuilt Entity Extractor', 'Intent Classifier',
 83        /// 'Pattern.Any Entity Extractor', 'Closed List Entity Extractor',
 84        /// 'Regex Entity Extractor'
 85        /// </summary>
 86        [JsonProperty(PropertyName = "readableType")]
 787        public string ReadableType { get; set; }
 88
 89        /// <summary>
 90        /// </summary>
 91        [JsonProperty(PropertyName = "roles")]
 892        public IList<EntityRole> Roles { get; set; }
 93
 94        /// <summary>
 95        /// </summary>
 96        [JsonProperty(PropertyName = "explicitList")]
 1297        public IList<ExplicitListItem> ExplicitList { get; set; }
 98
 99        /// <summary>
 100        /// Validate the object.
 101        /// </summary>
 102        /// <exception cref="ValidationException">
 103        /// Thrown if validation fails
 104        /// </exception>
 105        public virtual void Validate()
 106        {
 0107            if (ReadableType == null)
 108            {
 0109                throw new ValidationException(ValidationRules.CannotBeNull, "ReadableType");
 110            }
 0111        }
 112    }
 113}