Try your search with a different keyword or use * as a wildcard.
using Microsoft.AspNetCore.Http;
using Newtonsoft.Json;
namespace Nop.Plugin.Payments.PayPalCommerce.Domain.Onboarding;
///
/// Represents request to revoke access
///
public class RevokeAccessRequest : Request
{
public RevokeAccessRequest(string merchantGuid)
{
MerchantGuid = merchantGuid;
}
///
/// Gets or sets the internal merchant id
///
[JsonIgnore]
public string MerchantGuid { get; }
///
/// Gets the request path
///
public override string Path => $"paypal/merchant/{MerchantGuid}";
///
/// Gets the request method
///
public override string Method => HttpMethods.Delete;
}