示例#1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="TaxDistrictResponse" /> class.
 /// </summary>
 /// <param name="vendorName">vendorName.</param>
 /// <param name="objectId">objectId.</param>
 /// <param name="confidence">confidence.</param>
 /// <param name="jurisdiction">jurisdiction.</param>
 /// <param name="numOfIpdsFound">numOfIpdsFound.</param>
 /// <param name="ipds">ipds.</param>
 /// <param name="matchedAddress">matchedAddress.</param>
 /// <param name="census">census.</param>
 /// <param name="latLongFields">latLongFields.</param>
 public TaxDistrictResponse(string vendorName = default(string), string objectId = default(string), double confidence = default(double), IPDTaxJurisdiction jurisdiction = default(IPDTaxJurisdiction), int numOfIpdsFound = default(int), List <Ipd> ipds = default(List <Ipd>), TaxRateMatchedAddress matchedAddress = default(TaxRateMatchedAddress), Census census = default(Census), LatLongFields latLongFields = default(LatLongFields))
 {
     this.VendorName     = vendorName;
     this.ObjectId       = objectId;
     this.Confidence     = confidence;
     this.Jurisdiction   = jurisdiction;
     this.NumOfIpdsFound = numOfIpdsFound;
     this.Ipds           = ipds;
     this.MatchedAddress = matchedAddress;
     this.Census         = census;
     this.LatLongFields  = latLongFields;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="TaxRateResponse" /> class.
 /// </summary>
 /// <param name="objectId">objectId.</param>
 /// <param name="vendorName">vendorName.</param>
 /// <param name="gnisCode">gnisCode.</param>
 /// <param name="confidence">confidence.</param>
 /// <param name="jurisdiction">jurisdiction.</param>
 /// <param name="matchedAddress">matchedAddress.</param>
 /// <param name="salesTax">salesTax.</param>
 /// <param name="useTax">useTax.</param>
 /// <param name="census">census.</param>
 /// <param name="latLongFields">latLongFields.</param>
 /// <param name="address">address.</param>
 public TaxRateResponse(string objectId = default(string), string vendorName = default(string), string gnisCode = default(string), double confidence = default(double), TaxJurisdiction jurisdiction = default(TaxJurisdiction), TaxRateMatchedAddress matchedAddress = default(TaxRateMatchedAddress), SalesTax salesTax = default(SalesTax), UseTax useTax = default(UseTax), Census census = default(Census), LatLongFields latLongFields = default(LatLongFields), TaxRateMatchedAddress address = default(TaxRateMatchedAddress))
 {
     this.ObjectId       = objectId;
     this.VendorName     = vendorName;
     this.GnisCode       = gnisCode;
     this.Confidence     = confidence;
     this.Jurisdiction   = jurisdiction;
     this.MatchedAddress = matchedAddress;
     this.SalesTax       = salesTax;
     this.UseTax         = useTax;
     this.Census         = census;
     this.LatLongFields  = latLongFields;
     this.Address        = address;
 }