| | 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 | |
|
| | 7 | | namespace 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> |
| 0 | 22 | | public PII() |
| | 23 | | { |
| | 24 | | CustomInit(); |
| 0 | 25 | | } |
| | 26 | |
|
| | 27 | | /// <summary> |
| | 28 | | /// Initializes a new instance of the PII class. |
| | 29 | | /// </summary> |
| 0 | 30 | | public PII(IList<Email> email = default(IList<Email>), IList<SSN> sSN = default(IList<SSN>), IList<IPA> iPA = de |
| | 31 | | { |
| 0 | 32 | | Email = email; |
| 0 | 33 | | SSN = sSN; |
| 0 | 34 | | IPA = iPA; |
| 0 | 35 | | Phone = phone; |
| 0 | 36 | | Address = address; |
| | 37 | | CustomInit(); |
| 0 | 38 | | } |
| | 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")] |
| 0 | 48 | | public IList<Email> Email { get; set; } |
| | 49 | |
|
| | 50 | | /// <summary> |
| | 51 | | /// </summary> |
| | 52 | | [JsonProperty(PropertyName = "SSN")] |
| 0 | 53 | | public IList<SSN> SSN { get; set; } |
| | 54 | |
|
| | 55 | | /// <summary> |
| | 56 | | /// </summary> |
| | 57 | | [JsonProperty(PropertyName = "IPA")] |
| 0 | 58 | | public IList<IPA> IPA { get; set; } |
| | 59 | |
|
| | 60 | | /// <summary> |
| | 61 | | /// </summary> |
| | 62 | | [JsonProperty(PropertyName = "Phone")] |
| 0 | 63 | | public IList<Phone> Phone { get; set; } |
| | 64 | |
|
| | 65 | | /// <summary> |
| | 66 | | /// </summary> |
| | 67 | | [JsonProperty(PropertyName = "Address")] |
| 0 | 68 | | public IList<Address> Address { get; set; } |
| | 69 | |
|
| | 70 | | } |
| | 71 | | } |