Try your search with a different keyword or use * as a wildcard.
using Microsoft.AspNetCore.Http;
namespace Nop.Plugin.Misc.Zettle.Domain.Api.Secure;
///
/// Represents request to get the information about a merchant's account
///
public class GetAccountInfoRequest : SecureApiRequest
{
///
/// Gets the request path
///
public override string Path => "api/resources/organizations/self";
///
/// Gets the request method
///
public override string Method => HttpMethods.Get;
}