using Microsoft.AspNetCore.Http; namespace Nop.Plugin.Misc.Zettle.Domain.Api.Product; /// /// Represents request to get all discounts /// public class GetDiscountsRequest : ProductApiRequest { /// /// Gets the request path /// public override string Path => "organizations/self/discounts"; /// /// Gets the request method /// public override string Method => HttpMethods.Get; }