Webiant Logo Webiant Logo
  1. No results found.

    Try your search with a different keyword or use * as a wildcard.

TaxRate.cs

namespace Nop.Plugin.Tax.Avalara.Domain;

/// 
/// Represents a tax rate record
/// 
public class TaxRate
{
    /// 
    /// Gets or sets the five digit zip code
    /// 
    public string Zip { get; set; }

    /// 
    /// Gets or sets the two character US state abbreviation
    /// 
    public string State { get; set; }

    /// 
    /// Gets or sets the county name
    /// 
    public string County { get; set; }

    /// 
    /// Gets or sets the city name
    /// 
    public string City { get; set; }

    /// 
    /// Gets or sets the state component of the sales tax rate
    /// 
    public decimal StateTax { get; set; }

    /// 
    /// Gets or sets the county component of the sales tax rate
    /// 
    public decimal CountyTax { get; set; }

    /// 
    /// Gets or sets the city component of the sales tax rate
    /// 
    public decimal CityTax { get; set; }

    /// 
    /// Gets or sets the otal tax rate for sales tax for this postal code. This value may not equal the sum of the state/county/city due to special tax jurisdiction rules
    /// 
    public decimal TotalTax { get; set; }

    /// 
    /// Gets or sets a value indicating whether the shipping is taxable
    /// 
    public bool ShippingTaxable { get; set; }

    /// 
    /// Gets or sets a value indicating whether the shipping and handling are taxable when sent together
    /// 
    public bool ShippingAndHadlingTaxable { get; set; }
}