using Bit.Core.AdminConsole.Entities; using Bit.Core.AdminConsole.Entities.Provider; using Bit.Core.Billing.Entities; using Bit.Core.Billing.Enums; using Bit.Core.Billing.Models; using Bit.Core.Billing.Services.Contracts; using Bit.Core.Models.Business; using Stripe; namespace Bit.Core.Billing.Services; public interface IProviderBillingService { Task AddExistingOrganization( Provider provider, Organization organization, string key); /// /// Changes the assigned provider plan for the provider. /// /// The command to change the provider plan. Task ChangePlan(ChangeProviderPlanCommand command); /// /// Create a Stripe for the provided client utilizing /// the address and tax information of its . /// /// The MSP that owns the client organization. /// The client organization to create a Stripe for. Task CreateCustomerForClientOrganization( Provider provider, Organization organization); /// /// Generate a provider's client invoice report in CSV format for the specified . Utilizes the /// records saved for the as part of our webhook processing for the "invoice.created" and "invoice.finalized" Stripe events. /// /// The ID of the Stripe to generate the report for. /// The provider's client invoice report as a byte array. Task GenerateClientInvoiceReport( string invoiceId); Task> GetAddableOrganizations( Provider provider, Guid userId); /// /// Scales the 's seats for the specified using the provided . /// This operation may autoscale the provider's Stripe depending on the 's seat minimum for the /// specified . /// /// The to scale seats for. /// The to scale seats for. /// The change in the number of seats you'd like to apply to the . Task ScaleSeats( Provider provider, PlanType planType, int seatAdjustment); /// /// Determines whether the provided will result in a purchase for the 's . /// Seat adjustments that result in purchases include: /// /// The going from below the seat minimum to above the seat minimum for the provided /// The going from above the seat minimum to further above the seat minimum for the provided /// /// /// The provider to check seat adjustments for. /// The plan type to check seat adjustments for. /// The change in seats for the 's . Task SeatAdjustmentResultsInPurchase( Provider provider, PlanType planType, int seatAdjustment); /// /// For use during the provider setup process, this method creates a Stripe for the specified utilizing the provided . /// /// The to create a Stripe customer for. /// The to use for calculating the customer's automatic tax. /// The newly created for the . Task SetupCustomer( Provider provider, TaxInfo taxInfo); /// /// For use during the provider setup process, this method starts a Stripe for the given . /// subscriptions will always be started with a for both the /// and plan, and the quantity for each item will be equal the provider's seat minimum for each respective plan. /// /// The provider to create the for. /// The newly created for the . /// This method requires the to already have a linked Stripe via its field. Task SetupSubscription( Provider provider); /// /// Updates the 's payment source and tax information and then sets their subscription's collection_method to be "charge_automatically". /// /// The to update the payment source and tax information for. /// The tokenized payment source (ex. Credit Card) to attach to the . /// The 's updated tax information. Task UpdatePaymentMethod( Provider provider, TokenizedPaymentSource tokenizedPaymentSource, TaxInformation taxInformation); Task UpdateSeatMinimums(UpdateProviderSeatMinimumsCommand command); }