Try your search with a different keyword or use * as a wildcard.
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; }
}