/// <summary> /// Initializes a new instance of the <see cref="TaxRateResponse" /> 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 TaxRateResponse(string ObjectId = null, double?Confidence = null, TaxJurisdiction Jurisdiction = null, MatchedAddress MatchedAddress = null, SalesTaxRate SalesTax = null, UseTaxRate UseTax = null) { this.ObjectId = ObjectId; this.Confidence = Confidence; this.Jurisdiction = Jurisdiction; this.MatchedAddress = MatchedAddress; this.SalesTax = SalesTax; this.UseTax = UseTax; }
/// <summary> /// Initializes a new instance of the <see cref="TaxRateBatchResponse" /> 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 TaxRateBatchResponse(string ObjectId = null, double?Confidence = null, TaxJurisdiction Jurisdiction = null, MatchedAddress MatchedAddress = null, SalesTaxRate SalesTax = null, UseTaxRate 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; }