mirror of
https://github.com/bitwarden/server.git
synced 2025-04-05 13:08:17 -05:00

* Added invoices and transaction history endpoints. Added cursor paging for each * Removed try/catch since it's handled by middleware. Updated condition to use pattern matching * Added unit tests for PaymentHistoryService * Removed organizationId from account billing controller endpoints
18 lines
502 B
C#
18 lines
502 B
C#
using Bit.Core.Billing.Models;
|
|
using Bit.Core.Entities;
|
|
|
|
namespace Bit.Core.Billing.Services;
|
|
|
|
public interface IPaymentHistoryService
|
|
{
|
|
Task<IEnumerable<BillingHistoryInfo.BillingInvoice>> GetInvoiceHistoryAsync(
|
|
ISubscriber subscriber,
|
|
int pageSize = 5,
|
|
string startAfter = null);
|
|
|
|
Task<IEnumerable<BillingHistoryInfo.BillingTransaction>> GetTransactionHistoryAsync(
|
|
ISubscriber subscriber,
|
|
int pageSize = 5,
|
|
DateTime? startAfter = null);
|
|
}
|