Try your search with a different keyword or use * as a wildcard.
using Newtonsoft.Json;
namespace Nop.Plugin.Misc.Zettle.Domain.Api.Product;
///
/// Represents the products details
///
public class ProductList : List, IApiResponse
{
///
/// Gets or sets the error message
///
[JsonProperty(PropertyName = "error")]
public string Error { get; set; }
///
/// Gets or sets the error description
///
[JsonProperty(PropertyName = "error_description")]
public string ErrorDescription { get; set; }
///
/// Gets or sets the developer message
///
[JsonProperty(PropertyName = "developerMessage")]
public string DeveloperMessage { get; set; }
}