/// <summary>
 /// Initializes a new instance of the <see cref="ParcelBoundary" /> class.
 /// </summary>
 /// <param name="objectId">objectId.</param>
 /// <param name="apn">apn.</param>
 /// <param name="pid">pid.</param>
 /// <param name="center">center.</param>
 /// <param name="countyfips">countyfips.</param>
 /// <param name="geometry">geometry.</param>
 /// <param name="parcelList">parcelList.</param>
 /// <param name="adjacentParcelBoundary">adjacentParcelBoundary.</param>
 /// <param name="matchedAddress">matchedAddress.</param>
 public ParcelBoundary(string objectId = default(string), string apn = default(string), string pid = default(string), Center center = default(Center), string countyfips = default(string), PropertyInformationGeometry geometry = default(PropertyInformationGeometry), List <Parcel> parcelList = default(List <Parcel>), List <ParcelBoundary> adjacentParcelBoundary = default(List <ParcelBoundary>), MatchedAddress matchedAddress = default(MatchedAddress))
 {
     this.ObjectId               = objectId;
     this.Apn                    = apn;
     this.Pid                    = pid;
     this.Center                 = center;
     this.Countyfips             = countyfips;
     this.Geometry               = geometry;
     this.ParcelList             = parcelList;
     this.AdjacentParcelBoundary = adjacentParcelBoundary;
     this.MatchedAddress         = matchedAddress;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="Parcel" /> class.
 /// </summary>
 /// <param name="id">id.</param>
 /// <param name="censusCode">censusCode.</param>
 /// <param name="pbkey">pbkey.</param>
 /// <param name="address">address.</param>
 public Parcel(string id = default(string), string censusCode = default(string), string pbkey = default(string), MatchedAddress address = default(MatchedAddress))
 {
     this.Id         = id;
     this.CensusCode = censusCode;
     this.Pbkey      = pbkey;
     this.Address    = address;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="PropertyInfoResponse" /> class.
 /// </summary>
 /// <param name="objectId">objectId.</param>
 /// <param name="propertyAttributes">propertyAttributes.</param>
 /// <param name="matchedAddress">matchedAddress.</param>
 public PropertyInfoResponse(string objectId = default(string), PropertyAttributes propertyAttributes = default(PropertyAttributes), MatchedAddress matchedAddress = default(MatchedAddress))
 {
     this.ObjectId           = objectId;
     this.PropertyAttributes = propertyAttributes;
     this.MatchedAddress     = matchedAddress;
 }