< Summary

Class:Microsoft.Azure.CognitiveServices.Vision.Face.Models.Person
Assembly:Microsoft.Azure.CognitiveServices.Vision.Face
File(s):C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Vision.Face\src\Generated\Models\Person.cs
Covered lines:4
Uncovered lines:6
Coverable lines:10
Total lines:80
Line coverage:40% (4 of 10)
Covered branches:0
Total branches:0

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor()-100%100%
.ctor(...)-0%100%
get_PersonId()-100%100%
get_PersistedFaceIds()-100%100%
Validate()-0%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Vision.Face\src\Generated\Models\Person.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.Vision.Face.Models
 12{
 13    using Newtonsoft.Json;
 14    using System.Collections;
 15    using System.Collections.Generic;
 16    using System.Linq;
 17
 18    /// <summary>
 19    /// Person object.
 20    /// </summary>
 21    public partial class Person : NameAndUserDataContract
 22    {
 23        /// <summary>
 24        /// Initializes a new instance of the Person class.
 25        /// </summary>
 2426        public Person()
 27        {
 28            CustomInit();
 2429        }
 30
 31        /// <summary>
 32        /// Initializes a new instance of the Person class.
 33        /// </summary>
 34        /// <param name="personId">PersonId of the target face list.</param>
 35        /// <param name="name">User defined name, maximum length is
 36        /// 128.</param>
 37        /// <param name="userData">User specified data. Length should not
 38        /// exceed 16KB.</param>
 39        /// <param name="persistedFaceIds">PersistedFaceIds of registered faces
 40        /// in the person. These persistedFaceIds are returned from Person -
 41        /// Add a Person Face, and will not expire.</param>
 42        public Person(System.Guid personId, string name = default(string), string userData = default(string), IList<Syst
 043            : base(name, userData)
 44        {
 045            PersonId = personId;
 046            PersistedFaceIds = persistedFaceIds;
 47            CustomInit();
 048        }
 49
 50        /// <summary>
 51        /// An initialization method that performs custom operations like setting defaults
 52        /// </summary>
 53        partial void CustomInit();
 54
 55        /// <summary>
 56        /// Gets or sets personId of the target face list.
 57        /// </summary>
 58        [JsonProperty(PropertyName = "personId")]
 5659        public System.Guid PersonId { get; set; }
 60
 61        /// <summary>
 62        /// Gets or sets persistedFaceIds of registered faces in the person.
 63        /// These persistedFaceIds are returned from Person - Add a Person
 64        /// Face, and will not expire.
 65        /// </summary>
 66        [JsonProperty(PropertyName = "persistedFaceIds")]
 867        public IList<System.Guid> PersistedFaceIds { get; set; }
 68
 69        /// <summary>
 70        /// Validate the object.
 71        /// </summary>
 72        /// <exception cref="Rest.ValidationException">
 73        /// Thrown if validation fails
 74        /// </exception>
 75        public override void Validate()
 76        {
 077            base.Validate();
 078        }
 79    }
 80}