mirror of
https://github.com/bitwarden/server.git
synced 2025-05-18 01:55:37 -05:00

* Moved AccountsBilling controller to be owned by Billing * Added org billing history endpoint * Updated GetBillingInvoicesAsync to only retrieve paid, open, and uncollectible invoices, and added option to limit results * Removed invoices and transactions from GetBillingAsync * Limiting the number of invoices and transactions returned * Moved Billing models to Billing namespace * Split billing info and billing history objects * Removed billing method GetBillingBalanceAndSourceAsync * Removed unused using * Cleaned up BillingInfo a bit * Update migration scripts to use `CREATE OR ALTER` instead of checking for the `OBJECT_ID` * Applying limit to aggregated invoices after they return from Stripe
18 lines
508 B
C#
18 lines
508 B
C#
using Bit.Core.Billing.Models;
|
|
using Bit.Core.Models.Api;
|
|
|
|
namespace Bit.Api.Billing.Models.Responses;
|
|
|
|
public class BillingPaymentResponseModel : ResponseModel
|
|
{
|
|
public BillingPaymentResponseModel(BillingInfo billing)
|
|
: base("billingPayment")
|
|
{
|
|
Balance = billing.Balance;
|
|
PaymentSource = billing.PaymentSource != null ? new BillingSource(billing.PaymentSource) : null;
|
|
}
|
|
|
|
public decimal Balance { get; set; }
|
|
public BillingSource PaymentSource { get; set; }
|
|
}
|