< Summary

Class:Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.Models.ModelInfo
Assembly:Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring
File(s):C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Language.LUIS.Authoring\src\Generated\Models\ModelInfo.cs
Covered lines:5
Uncovered lines:10
Coverable lines:15
Total lines:99
Line coverage:33.3% (5 of 15)
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()-100%100%
get_Name()-100%100%
get_TypeId()-0%100%
get_ReadableType()-100%100%
Validate()-0%0%

File(s)

C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Language.LUIS.Authoring\src\Generated\Models\ModelInfo.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.Linq;
 16
 17    /// <summary>
 18    /// Base type used in entity types.
 19    /// </summary>
 20    public partial class ModelInfo
 21    {
 22        /// <summary>
 23        /// Initializes a new instance of the ModelInfo class.
 24        /// </summary>
 4825        public ModelInfo()
 26        {
 27            CustomInit();
 4828        }
 29
 30        /// <summary>
 31        /// Initializes a new instance of the ModelInfo class.
 32        /// </summary>
 33        /// <param name="id">The ID of the Entity Model.</param>
 34        /// <param name="readableType">Possible values include: 'Entity
 35        /// Extractor', 'Child Entity Extractor', 'Hierarchical Entity
 36        /// Extractor', 'Hierarchical Child Entity Extractor', 'Composite
 37        /// Entity Extractor', 'List Entity Extractor', 'Prebuilt Entity
 38        /// Extractor', 'Intent Classifier', 'Pattern.Any Entity Extractor',
 39        /// 'Closed List Entity Extractor', 'Regex Entity Extractor'</param>
 40        /// <param name="name">Name of the Entity Model.</param>
 41        /// <param name="typeId">The type ID of the Entity Model.</param>
 042        public ModelInfo(System.Guid id, string readableType, string name = default(string), int? typeId = default(int?)
 43        {
 044            Id = id;
 045            Name = name;
 046            TypeId = typeId;
 047            ReadableType = readableType;
 48            CustomInit();
 049        }
 50
 51        /// <summary>
 52        /// An initialization method that performs custom operations like setting defaults
 53        /// </summary>
 54        partial void CustomInit();
 55
 56        /// <summary>
 57        /// Gets or sets the ID of the Entity Model.
 58        /// </summary>
 59        [JsonProperty(PropertyName = "id")]
 5760        public System.Guid Id { get; set; }
 61
 62        /// <summary>
 63        /// Gets or sets name of the Entity Model.
 64        /// </summary>
 65        [JsonProperty(PropertyName = "name")]
 5366        public string Name { get; set; }
 67
 68        /// <summary>
 69        /// Gets or sets the type ID of the Entity Model.
 70        /// </summary>
 71        [JsonProperty(PropertyName = "typeId")]
 072        public int? TypeId { get; set; }
 73
 74        /// <summary>
 75        /// Gets or sets possible values include: 'Entity Extractor', 'Child
 76        /// Entity Extractor', 'Hierarchical Entity Extractor', 'Hierarchical
 77        /// Child Entity Extractor', 'Composite Entity Extractor', 'List Entity
 78        /// Extractor', 'Prebuilt Entity Extractor', 'Intent Classifier',
 79        /// 'Pattern.Any Entity Extractor', 'Closed List Entity Extractor',
 80        /// 'Regex Entity Extractor'
 81        /// </summary>
 82        [JsonProperty(PropertyName = "readableType")]
 4983        public string ReadableType { get; set; }
 84
 85        /// <summary>
 86        /// Validate the object.
 87        /// </summary>
 88        /// <exception cref="ValidationException">
 89        /// Thrown if validation fails
 90        /// </exception>
 91        public virtual void Validate()
 92        {
 093            if (ReadableType == null)
 94            {
 095                throw new ValidationException(ValidationRules.CannotBeNull, "ReadableType");
 96            }
 097        }
 98    }
 99}