예제 #1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="TaxResponse" /> class.
 /// </summary>
 /// <param name="ObjectId">ObjectId.</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>
 public TaxResponse(string ObjectId = null, double?Confidence = null, TaxJurisdiction Jurisdiction = null, MatchedAddress MatchedAddress = null, SalesTax SalesTax = null, UseTax UseTax = null)
 {
     this.ObjectId       = ObjectId;
     this.Confidence     = Confidence;
     this.Jurisdiction   = Jurisdiction;
     this.MatchedAddress = MatchedAddress;
     this.SalesTax       = SalesTax;
     this.UseTax         = UseTax;
 }
예제 #2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="TaxBatchResponse" /> class.
 /// </summary>
 /// <param name="ObjectId">ObjectId.</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>
 public TaxBatchResponse(string ObjectId = null, double?Confidence = null, TaxJurisdiction Jurisdiction = null, MatchedAddress MatchedAddress = null, SalesTax SalesTax = null, UseTax UseTax = null, Census Census = null, LatLongFields LatLongFields = null)
 {
     this.ObjectId       = ObjectId;
     this.Confidence     = Confidence;
     this.Jurisdiction   = Jurisdiction;
     this.MatchedAddress = MatchedAddress;
     this.SalesTax       = SalesTax;
     this.UseTax         = UseTax;
     this.Census         = Census;
     this.LatLongFields  = LatLongFields;
 }