< Summary

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

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor()-100%100%
.ctor(...)-0%100%
get_Text()-100%100%
get_EntityLabels()-100%100%
get_IntentName()-100%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Language.LUIS.Authoring\src\Generated\Models\ExampleLabelObject.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    /// A labeled example utterance.
 20    /// </summary>
 21    public partial class ExampleLabelObject
 22    {
 23        /// <summary>
 24        /// Initializes a new instance of the ExampleLabelObject class.
 25        /// </summary>
 726        public ExampleLabelObject()
 27        {
 28            CustomInit();
 729        }
 30
 31        /// <summary>
 32        /// Initializes a new instance of the ExampleLabelObject class.
 33        /// </summary>
 34        /// <param name="text">The example utterance.</param>
 35        /// <param name="entityLabels">The identified entities within the
 36        /// example utterance.</param>
 37        /// <param name="intentName">The identified intent representing the
 38        /// example utterance.</param>
 039        public ExampleLabelObject(string text = default(string), IList<EntityLabelObject> entityLabels = default(IList<E
 40        {
 041            Text = text;
 042            EntityLabels = entityLabels;
 043            IntentName = intentName;
 44            CustomInit();
 045        }
 46
 47        /// <summary>
 48        /// An initialization method that performs custom operations like setting defaults
 49        /// </summary>
 50        partial void CustomInit();
 51
 52        /// <summary>
 53        /// Gets or sets the example utterance.
 54        /// </summary>
 55        [JsonProperty(PropertyName = "text")]
 1756        public string Text { get; set; }
 57
 58        /// <summary>
 59        /// Gets or sets the identified entities within the example utterance.
 60        /// </summary>
 61        [JsonProperty(PropertyName = "entityLabels")]
 1562        public IList<EntityLabelObject> EntityLabels { get; set; }
 63
 64        /// <summary>
 65        /// Gets or sets the identified intent representing the example
 66        /// utterance.
 67        /// </summary>
 68        [JsonProperty(PropertyName = "intentName")]
 1469        public string IntentName { get; set; }
 70
 71    }
 72}