/// <summary>
 /// Initializes a new instance of the <see cref="NatuurlijkPersoonBeperktAllOf" /> class.
 /// </summary>
 /// <param name="type">type.</param>
 public NatuurlijkPersoonBeperktAllOf(NatuurlijkPersoonTypeEnum type = default(NatuurlijkPersoonTypeEnum))
 {
     this.Type = type;
 }
示例#2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="NatuurlijkPersoonBeperkt" /> class.
 /// </summary>
 /// <param name="identificatie">Unieke identificatie voor de persoon. Voor een Kadasterpersoon is dit de identificatie zoals die door het Kadaster is vastgesteld. Voor een ingeschreven natuurlijk persoon is dit het burgerservicenummer. Voor een ingeschreven niet-natuurlijk persoon is dit het RSIN. Of de waarde in identificatie een burgerservicenummer, een RSIN of een kadasterpersoonidentificatie is kan worden afgeleid uit het type persoon..</param>
 /// <param name="omschrijving">Voor mensen leesbare, herkenbare en identificerende omschrijving van de persoon (met bijvoorbeeld de naam)..</param>
 /// <param name="type">type.</param>
 public NatuurlijkPersoonBeperkt(string identificatie = default(string), string omschrijving = default(string), NatuurlijkPersoonTypeEnum type = default(NatuurlijkPersoonTypeEnum))
 {
     this.Identificatie = identificatie;
     this.Omschrijving  = omschrijving;
     this.Type          = type;
 }