< Summary

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

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor()-100%100%
.ctor(...)-0%100%
get_Name()-0%100%
get_Description()-0%100%
get_Examples()-0%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Language.LUIS.Authoring\src\Generated\Models\AvailablePrebuiltEntityModel.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 Newtonsoft.Json;
 14    using System.Linq;
 15
 16    /// <summary>
 17    /// Available Prebuilt entity model for using in an application.
 18    /// </summary>
 19    public partial class AvailablePrebuiltEntityModel
 20    {
 21        /// <summary>
 22        /// Initializes a new instance of the AvailablePrebuiltEntityModel
 23        /// class.
 24        /// </summary>
 1825        public AvailablePrebuiltEntityModel()
 26        {
 27            CustomInit();
 1828        }
 29
 30        /// <summary>
 31        /// Initializes a new instance of the AvailablePrebuiltEntityModel
 32        /// class.
 33        /// </summary>
 34        /// <param name="name">The entity name.</param>
 35        /// <param name="description">The entity description and usage
 36        /// information.</param>
 37        /// <param name="examples">Usage examples.</param>
 038        public AvailablePrebuiltEntityModel(string name = default(string), string description = default(string), string 
 39        {
 040            Name = name;
 041            Description = description;
 042            Examples = examples;
 43            CustomInit();
 044        }
 45
 46        /// <summary>
 47        /// An initialization method that performs custom operations like setting defaults
 48        /// </summary>
 49        partial void CustomInit();
 50
 51        /// <summary>
 52        /// Gets or sets the entity name.
 53        /// </summary>
 54        [JsonProperty(PropertyName = "name")]
 055        public string Name { get; set; }
 56
 57        /// <summary>
 58        /// Gets or sets the entity description and usage information.
 59        /// </summary>
 60        [JsonProperty(PropertyName = "description")]
 061        public string Description { get; set; }
 62
 63        /// <summary>
 64        /// Gets or sets usage examples.
 65        /// </summary>
 66        [JsonProperty(PropertyName = "examples")]
 067        public string Examples { get; set; }
 68
 69    }
 70}