Try your search with a different keyword or use * as a wildcard.
using Microsoft.AspNetCore.Http;
namespace Nop.Plugin.Misc.Zettle.Domain.Api.Product;
///
/// Represents request to get all categories
///
public class GetCategoriesRequest : ProductApiRequest
{
///
/// Gets the request path
///
public override string Path => "organizations/self/categories/v2";
///
/// Gets the request method
///
public override string Method => HttpMethods.Get;
}