< Summary

Class:Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.Models.ChildEntityModelCreateObject
Assembly:Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring
File(s):C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Language.LUIS.Authoring\src\Generated\Models\ChildEntityModelCreateObject.cs
Covered lines:5
Uncovered lines:5
Coverable lines:10
Total lines:71
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_Children()-100%100%
get_Name()-100%100%
get_InstanceOf()-100%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Language.LUIS.Authoring\src\Generated\Models\ChildEntityModelCreateObject.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 child entity extractor create object.
 20    /// </summary>
 21    public partial class ChildEntityModelCreateObject
 22    {
 23        /// <summary>
 24        /// Initializes a new instance of the ChildEntityModelCreateObject
 25        /// class.
 26        /// </summary>
 1127        public ChildEntityModelCreateObject()
 28        {
 29            CustomInit();
 1130        }
 31
 32        /// <summary>
 33        /// Initializes a new instance of the ChildEntityModelCreateObject
 34        /// class.
 35        /// </summary>
 36        /// <param name="children">Child entities.</param>
 37        /// <param name="name">Entity name.</param>
 38        /// <param name="instanceOf">The instance of model name</param>
 039        public ChildEntityModelCreateObject(IList<ChildEntityModelCreateObject> children = default(IList<ChildEntityMode
 40        {
 041            Children = children;
 042            Name = name;
 043            InstanceOf = instanceOf;
 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 child entities.
 54        /// </summary>
 55        [JsonProperty(PropertyName = "children")]
 1656        public IList<ChildEntityModelCreateObject> Children { get; set; }
 57
 58        /// <summary>
 59        /// Gets or sets entity name.
 60        /// </summary>
 61        [JsonProperty(PropertyName = "name")]
 2262        public string Name { get; set; }
 63
 64        /// <summary>
 65        /// Gets or sets the instance of model name
 66        /// </summary>
 67        [JsonProperty(PropertyName = "instanceOf")]
 1368        public string InstanceOf { get; set; }
 69
 70    }
 71}