Try your search with a different keyword or use * as a wildcard.
using Newtonsoft.Json;
namespace Nop.Plugin.Misc.Zettle.Domain.Api.Product;
///
/// Represents tax rates details
///
public class TaxRateList : ApiResponse
{
///
/// Gets or sets a list of all tax rates
///
[JsonProperty(PropertyName = "taxRates")]
public List TaxRates { get; set; }
}