Webiant Logo Webiant Logo
  1. No results found.

    Try your search with a different keyword or use * as a wildcard.

IApiRequest.cs

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; }
}