You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The current free plan is 50h per month. We need to make sure that new users get a monthly credit entry for that.
Design Proposal
We will enhance the CostCenter type to contain information about a billingStrategy. There will initially be two strategies: stripe, other.
All cost centers with a stripe strategy are managed by stripe. So we will treat them as we do now (i.e. update the credits in every usage reconciliation and wait for Stripe to come up with an invoice finalization.
The other cost centers will be managed by a control loop, that inserts a credit into usage that is min(balance, usageLimit). This happens monthly.
The text was updated successfully, but these errors were encountered:
The current free plan is 50h per month. We need to make sure that new users get a monthly credit entry for that.
Design Proposal
We will enhance the
CostCenter
type to contain information about abillingStrategy
. There will initially be two strategies:stripe
,other
.All cost centers with a
stripe
strategy are managed by stripe. So we will treat them as we do now (i.e. update the credits in every usage reconciliation and wait for Stripe to come up with an invoice finalization.The
other
cost centers will be managed by a control loop, that inserts a credit into usage that ismin(balance, usageLimit)
. This happens monthly.The text was updated successfully, but these errors were encountered: