()
| 33 | ) |
| 34 | |
| 35 | func (e UsageEventType) Valid() bool { |
| 36 | switch e { |
| 37 | case UsageEventTypeDCManagedAgentsV1: |
| 38 | return true |
| 39 | case UsageEventTypeHBAISeatsV1: |
| 40 | return true |
| 41 | default: |
| 42 | return false |
| 43 | } |
| 44 | } |
| 45 | |
| 46 | func (e UsageEventType) IsDiscrete() bool { |
| 47 | return e.Valid() && strings.HasPrefix(string(e), "dc_") |
no outgoing calls
no test coverage detected