mirror of
https://github.com/bitwarden/server
synced 2026-02-13 06:53:56 +00:00
* Remove request logging, fix txn_id correlation * Respond 400 when txn_id is missing * More cleanup
7 lines
139 B
C#
7 lines
139 B
C#
namespace Bit.Billing.Services;
|
|
|
|
public interface IPayPalIPNClient
|
|
{
|
|
Task<bool> VerifyIPN(string transactionId, string formData);
|
|
}
|