namespace Nop.Plugin.Payments.PayPalCommerce.Services.Api; /// /// Represents API request /// public interface IApiRequest { /// /// Gets the request path /// public string Path { get; } /// /// Gets the request method /// public string Method { get; } }