using Microsoft.AspNetCore.Http; namespace Nop.Plugin.Misc.Zettle.Domain.Api.OAuth; /// /// Represents request to delete app connections associated with user data access /// public class DeleteAppRequest : OAuthApiRequest, IAuthorizedRequest { /// /// Gets the request path /// public override string Path => "application-connections/self"; /// /// Gets the request method /// public override string Method => HttpMethods.Delete; }