using Newtonsoft.Json; namespace Nop.Plugin.Misc.Zettle.Domain.Api.Product; /// /// Represents the tax rate details /// public class TaxRate : ApiResponse { #region Properties /// /// Gets or sets the unique identifier as UUID version 1 /// [JsonProperty(PropertyName = "uuid")] public string Uuid { get; set; } /// /// Gets or sets the label /// [JsonProperty(PropertyName = "label")] public string Label { get; set; } /// /// Gets or sets the percentage /// [JsonProperty(PropertyName = "percentage")] public decimal? Percentage { get; set; } /// /// Gets or sets a value indicating whether the tax rate is default /// [JsonProperty(PropertyName = "default")] public bool? IsDefault { get; set; } #endregion }