< Summary

Class:Microsoft.Azure.CognitiveServices.ContentModerator.Models.PII
Assembly:Microsoft.Azure.CognitiveServices.Vision.ContentModerator
File(s):C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Vision.ContentModerator\src\Generated\Models\PII.cs
Covered lines:0
Uncovered lines:14
Coverable lines:14
Total lines:71
Line coverage:0% (0 of 14)
Covered branches:0
Total branches:0

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor()-0%100%
.ctor(...)-0%100%
get_Email()-0%100%
get_SSN()-0%100%
get_IPA()-0%100%
get_Phone()-0%100%
get_Address()-0%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Vision.ContentModerator\src\Generated\Models\PII.cs

#LineLine coverage
 1// <auto-generated>
 2// Code generated by Microsoft (R) AutoRest Code Generator.
 3// Changes may cause incorrect behavior and will be lost if the code is
 4// regenerated.
 5// </auto-generated>
 6
 7namespace Microsoft.Azure.CognitiveServices.ContentModerator.Models
 8{
 9    using Newtonsoft.Json;
 10    using System.Collections;
 11    using System.Collections.Generic;
 12    using System.Linq;
 13
 14    /// <summary>
 15    /// Personal Identifier Information details.
 16    /// </summary>
 17    public partial class PII
 18    {
 19        /// <summary>
 20        /// Initializes a new instance of the PII class.
 21        /// </summary>
 022        public PII()
 23        {
 24            CustomInit();
 025        }
 26
 27        /// <summary>
 28        /// Initializes a new instance of the PII class.
 29        /// </summary>
 030        public PII(IList<Email> email = default(IList<Email>), IList<SSN> sSN = default(IList<SSN>), IList<IPA> iPA = de
 31        {
 032            Email = email;
 033            SSN = sSN;
 034            IPA = iPA;
 035            Phone = phone;
 036            Address = address;
 37            CustomInit();
 038        }
 39
 40        /// <summary>
 41        /// An initialization method that performs custom operations like setting defaults
 42        /// </summary>
 43        partial void CustomInit();
 44
 45        /// <summary>
 46        /// </summary>
 47        [JsonProperty(PropertyName = "Email")]
 048        public IList<Email> Email { get; set; }
 49
 50        /// <summary>
 51        /// </summary>
 52        [JsonProperty(PropertyName = "SSN")]
 053        public IList<SSN> SSN { get; set; }
 54
 55        /// <summary>
 56        /// </summary>
 57        [JsonProperty(PropertyName = "IPA")]
 058        public IList<IPA> IPA { get; set; }
 59
 60        /// <summary>
 61        /// </summary>
 62        [JsonProperty(PropertyName = "Phone")]
 063        public IList<Phone> Phone { get; set; }
 64
 65        /// <summary>
 66        /// </summary>
 67        [JsonProperty(PropertyName = "Address")]
 068        public IList<Address> Address { get; set; }
 69
 70    }
 71}