mirror of
https://github.com/rcourtman/Pulse.git
synced 2026-05-06 16:16:26 +00:00
13 lines
341 B
Go
13 lines
341 B
Go
package licensing
|
|
|
|
// EntitlementSource provides entitlement data from any backing store.
|
|
type EntitlementSource interface {
|
|
Capabilities() []string
|
|
Limits() map[string]int64
|
|
MetersEnabled() []string
|
|
PlanVersion() string
|
|
SubscriptionState() SubscriptionState
|
|
TrialStartedAt() *int64
|
|
TrialEndsAt() *int64
|
|
OverflowGrantedAt() *int64
|
|
}
|