< Summary

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

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor()-0%100%
.ctor(...)-0%100%
get_Emails()-0%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Language.LUIS.Authoring\src\Generated\Models\CollaboratorsArray.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    public partial class CollaboratorsArray
 19    {
 20        /// <summary>
 21        /// Initializes a new instance of the CollaboratorsArray class.
 22        /// </summary>
 023        public CollaboratorsArray()
 24        {
 25            CustomInit();
 026        }
 27
 28        /// <summary>
 29        /// Initializes a new instance of the CollaboratorsArray class.
 30        /// </summary>
 31        /// <param name="emails">The email address of the users.</param>
 032        public CollaboratorsArray(IList<string> emails = default(IList<string>))
 33        {
 034            Emails = emails;
 35            CustomInit();
 036        }
 37
 38        /// <summary>
 39        /// An initialization method that performs custom operations like setting defaults
 40        /// </summary>
 41        partial void CustomInit();
 42
 43        /// <summary>
 44        /// Gets or sets the email address of the users.
 45        /// </summary>
 46        [JsonProperty(PropertyName = "emails")]
 047        public IList<string> Emails { get; set; }
 48
 49    }
 50}

Methods/Properties

.ctor()
.ctor(...)
get_Emails()