We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 693af0e commit 65e2bc8Copy full SHA for 65e2bc8
api/cockpit/v1beta1/cockpit_sdk.go
@@ -265,9 +265,13 @@ type PlanName string
265
266
const (
267
PlanNameUnknownName = PlanName("unknown_name")
268
- PlanNameFree = PlanName("free")
269
- PlanNamePremium = PlanName("premium")
270
- PlanNameCustom = PlanName("custom")
+ // The free plan is the default plan.
+ PlanNameFree = PlanName("free")
+ // The premium plan with a longer retention.
271
+ PlanNamePremium = PlanName("premium")
272
+ PlanNameCustom = PlanName("custom")
273
+ // The expert plan with the longest retention.
274
+ PlanNameExpert = PlanName("expert")
275
)
276
277
func (enum PlanName) String() string {
0 commit comments