< Summary

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

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor()-100%100%
.ctor(...)-0%100%
get_AdditionalProperties()-100%100%
get_LuisSchemaVersion()-100%100%
get_Name()-100%100%
get_VersionId()-100%100%
get_Desc()-100%100%
get_Culture()-100%100%
get_Intents()-100%100%
get_Entities()-100%100%
get_ClosedLists()-100%100%
get_Composites()-100%100%
get_PatternAnyEntities()-0%100%
get_RegexEntities()-0%100%
get_PrebuiltEntities()-0%100%
get_RegexFeatures()-100%100%
get_ModelFeatures()-100%100%
get_Patterns()-0%100%
get_Utterances()-100%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Language.LUIS.Authoring\src\Generated\Models\LuisAppV2.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.Collections;
 15    using System.Collections.Generic;
 16    using System.Linq;
 17
 18    /// <summary>
 19    /// Exported Model - An exported LUIS Application.
 20    /// </summary>
 21    public partial class LuisAppV2
 22    {
 23        /// <summary>
 24        /// Initializes a new instance of the LuisAppV2 class.
 25        /// </summary>
 226        public LuisAppV2()
 27        {
 28            CustomInit();
 229        }
 30
 31        /// <summary>
 32        /// Initializes a new instance of the LuisAppV2 class.
 33        /// </summary>
 34        /// <param name="additionalProperties">Unmatched properties from the
 35        /// message are deserialized this collection</param>
 36        /// <param name="luisSchemaVersion">Luis schema deserialization
 37        /// version.</param>
 38        /// <param name="name">The name of the application.</param>
 39        /// <param name="versionId">The version ID of the application that was
 40        /// exported.</param>
 41        /// <param name="desc">The description of the application.</param>
 42        /// <param name="culture">The culture of the application. E.g.:
 43        /// en-us.</param>
 44        /// <param name="intents">List of intents.</param>
 45        /// <param name="entities">List of entities.</param>
 46        /// <param name="closedLists">List of list entities.</param>
 47        /// <param name="composites">List of composite entities.</param>
 48        /// <param name="patternAnyEntities">List of Pattern.Any
 49        /// entities.</param>
 50        /// <param name="regexEntities">List of regular expression
 51        /// entities.</param>
 52        /// <param name="prebuiltEntities">List of prebuilt entities.</param>
 53        /// <param name="regexFeatures">List of pattern features.</param>
 54        /// <param name="modelFeatures">List of model features.</param>
 55        /// <param name="patterns">List of patterns.</param>
 56        /// <param name="utterances">List of example utterances.</param>
 057        public LuisAppV2(IDictionary<string, object> additionalProperties = default(IDictionary<string, object>), string
 58        {
 059            AdditionalProperties = additionalProperties;
 060            LuisSchemaVersion = luisSchemaVersion;
 061            Name = name;
 062            VersionId = versionId;
 063            Desc = desc;
 064            Culture = culture;
 065            Intents = intents;
 066            Entities = entities;
 067            ClosedLists = closedLists;
 068            Composites = composites;
 069            PatternAnyEntities = patternAnyEntities;
 070            RegexEntities = regexEntities;
 071            PrebuiltEntities = prebuiltEntities;
 072            RegexFeatures = regexFeatures;
 073            ModelFeatures = modelFeatures;
 074            Patterns = patterns;
 075            Utterances = utterances;
 76            CustomInit();
 077        }
 78
 79        /// <summary>
 80        /// An initialization method that performs custom operations like setting defaults
 81        /// </summary>
 82        partial void CustomInit();
 83
 84        /// <summary>
 85        /// Gets or sets unmatched properties from the message are deserialized
 86        /// this collection
 87        /// </summary>
 88        [JsonExtensionData]
 689        public IDictionary<string, object> AdditionalProperties { get; set; }
 90
 91        /// <summary>
 92        /// Gets or sets luis schema deserialization version.
 93        /// </summary>
 94        [JsonProperty(PropertyName = "luis_schema_version")]
 495        public string LuisSchemaVersion { get; set; }
 96
 97        /// <summary>
 98        /// Gets or sets the name of the application.
 99        /// </summary>
 100        [JsonProperty(PropertyName = "name")]
 4101        public string Name { get; set; }
 102
 103        /// <summary>
 104        /// Gets or sets the version ID of the application that was exported.
 105        /// </summary>
 106        [JsonProperty(PropertyName = "versionId")]
 4107        public string VersionId { get; set; }
 108
 109        /// <summary>
 110        /// Gets or sets the description of the application.
 111        /// </summary>
 112        [JsonProperty(PropertyName = "desc")]
 4113        public string Desc { get; set; }
 114
 115        /// <summary>
 116        /// Gets or sets the culture of the application. E.g.: en-us.
 117        /// </summary>
 118        [JsonProperty(PropertyName = "culture")]
 4119        public string Culture { get; set; }
 120
 121        /// <summary>
 122        /// Gets or sets list of intents.
 123        /// </summary>
 124        [JsonProperty(PropertyName = "intents")]
 6125        public IList<HierarchicalModelV2> Intents { get; set; }
 126
 127        /// <summary>
 128        /// Gets or sets list of entities.
 129        /// </summary>
 130        [JsonProperty(PropertyName = "entities")]
 6131        public IList<HierarchicalModelV2> Entities { get; set; }
 132
 133        /// <summary>
 134        /// Gets or sets list of list entities.
 135        /// </summary>
 136        [JsonProperty(PropertyName = "closedLists")]
 6137        public IList<ClosedList> ClosedLists { get; set; }
 138
 139        /// <summary>
 140        /// Gets or sets list of composite entities.
 141        /// </summary>
 142        [JsonProperty(PropertyName = "composites")]
 6143        public IList<HierarchicalModelV2> Composites { get; set; }
 144
 145        /// <summary>
 146        /// Gets or sets list of Pattern.Any entities.
 147        /// </summary>
 148        [JsonProperty(PropertyName = "patternAnyEntities")]
 0149        public IList<PatternAny> PatternAnyEntities { get; set; }
 150
 151        /// <summary>
 152        /// Gets or sets list of regular expression entities.
 153        /// </summary>
 154        [JsonProperty(PropertyName = "regex_entities")]
 0155        public IList<RegexEntity> RegexEntities { get; set; }
 156
 157        /// <summary>
 158        /// Gets or sets list of prebuilt entities.
 159        /// </summary>
 160        [JsonProperty(PropertyName = "prebuiltEntities")]
 0161        public IList<PrebuiltEntity> PrebuiltEntities { get; set; }
 162
 163        /// <summary>
 164        /// Gets or sets list of pattern features.
 165        /// </summary>
 166        [JsonProperty(PropertyName = "regex_features")]
 6167        public IList<JSONRegexFeature> RegexFeatures { get; set; }
 168
 169        /// <summary>
 170        /// Gets or sets list of model features.
 171        /// </summary>
 172        [JsonProperty(PropertyName = "model_features")]
 6173        public IList<JSONModelFeature> ModelFeatures { get; set; }
 174
 175        /// <summary>
 176        /// Gets or sets list of patterns.
 177        /// </summary>
 178        [JsonProperty(PropertyName = "patterns")]
 0179        public IList<PatternRule> Patterns { get; set; }
 180
 181        /// <summary>
 182        /// Gets or sets list of example utterances.
 183        /// </summary>
 184        [JsonProperty(PropertyName = "utterances")]
 6185        public IList<JSONUtterance> Utterances { get; set; }
 186
 187    }
 188}