< Summary

Class:Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.Models.JSONEntity
Assembly:Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring
File(s):C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Language.LUIS.Authoring\src\Generated\Models\JSONEntity.cs
Covered lines:5
Uncovered lines:16
Coverable lines:21
Total lines:112
Line coverage:23.8% (5 of 21)
Covered branches:0
Total branches:8
Branch coverage:0% (0 of 8)

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor()-100%100%
.ctor(...)-0%100%
get_StartPos()-100%100%
get_EndPos()-100%100%
get_Entity()-100%100%
get_Role()-0%100%
get_Children()-0%100%
Validate()-0%0%

File(s)

C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Language.LUIS.Authoring\src\Generated\Models\JSONEntity.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    /// Exported Model - Extracted Entity from utterance.
 21    /// </summary>
 22    public partial class JSONEntity
 23    {
 24        /// <summary>
 25        /// Initializes a new instance of the JSONEntity class.
 26        /// </summary>
 6627        public JSONEntity()
 28        {
 29            CustomInit();
 6630        }
 31
 32        /// <summary>
 33        /// Initializes a new instance of the JSONEntity class.
 34        /// </summary>
 35        /// <param name="startPos">The index within the utterance where the
 36        /// extracted entity starts.</param>
 37        /// <param name="endPos">The index within the utterance where the
 38        /// extracted entity ends.</param>
 39        /// <param name="entity">The entity name.</param>
 40        /// <param name="role">The role the entity plays in the
 41        /// utterance.</param>
 042        public JSONEntity(int startPos, int endPos, string entity, string role = default(string), IList<JSONEntity> chil
 43        {
 044            StartPos = startPos;
 045            EndPos = endPos;
 046            Entity = entity;
 047            Role = role;
 048            Children = children;
 49            CustomInit();
 050        }
 51
 52        /// <summary>
 53        /// An initialization method that performs custom operations like setting defaults
 54        /// </summary>
 55        partial void CustomInit();
 56
 57        /// <summary>
 58        /// Gets or sets the index within the utterance where the extracted
 59        /// entity starts.
 60        /// </summary>
 61        [JsonProperty(PropertyName = "startPos")]
 13262        public int StartPos { get; set; }
 63
 64        /// <summary>
 65        /// Gets or sets the index within the utterance where the extracted
 66        /// entity ends.
 67        /// </summary>
 68        [JsonProperty(PropertyName = "endPos")]
 13269        public int EndPos { get; set; }
 70
 71        /// <summary>
 72        /// Gets or sets the entity name.
 73        /// </summary>
 74        [JsonProperty(PropertyName = "entity")]
 13275        public string Entity { get; set; }
 76
 77        /// <summary>
 78        /// Gets or sets the role the entity plays in the utterance.
 79        /// </summary>
 80        [JsonProperty(PropertyName = "role")]
 081        public string Role { get; set; }
 82
 83        /// <summary>
 84        /// </summary>
 85        [JsonProperty(PropertyName = "children")]
 086        public IList<JSONEntity> Children { get; set; }
 87
 88        /// <summary>
 89        /// Validate the object.
 90        /// </summary>
 91        /// <exception cref="ValidationException">
 92        /// Thrown if validation fails
 93        /// </exception>
 94        public virtual void Validate()
 95        {
 096            if (Entity == null)
 97            {
 098                throw new ValidationException(ValidationRules.CannotBeNull, "Entity");
 99            }
 0100            if (Children != null)
 101            {
 0102                foreach (var element in Children)
 103                {
 0104                    if (element != null)
 105                    {
 0106                        element.Validate();
 107                    }
 108                }
 109            }
 0110        }
 111    }
 112}