-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathwebhookentitypluraltype.go
19 lines (17 loc) · 1.06 KB
/
webhookentitypluraltype.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package monta
// WebhookEntityPluralType represents the type of a webhook entity in plural form.
type WebhookEntityPluralType string
// Known [WebhookEntityPluralType] values.
const (
WebhookEntityPluralTypeAll WebhookEntityPluralType = "*"
WebhookEntityPluralTypeCharges WebhookEntityPluralType = "charges"
WebhookEntityPluralTypeChargePoints WebhookEntityPluralType = "charge-points"
WebhookEntityPluralTypeSites WebhookEntityPluralType = "sites"
WebhookEntityPluralTypeTeams WebhookEntityPluralType = "teams"
WebhookEntityPluralTypeTeamMembers WebhookEntityPluralType = "team-members"
WebhookEntityPluralTypeInstallerJobs WebhookEntityPluralType = "installer-jobs"
WebhookEntityPluralTypeWalletTransactions WebhookEntityPluralType = "wallet-transactions"
WebhookEntityPluralTypePriceGroups WebhookEntityPluralType = "price-groups"
WebhookEntityPluralTypePlans WebhookEntityPluralType = "plans"
WebhookEntityPluralTypeSubscriptions WebhookEntityPluralType = "subscriptions"
)