()
| 48 | } |
| 49 | |
| 50 | func (e UsageEventType) IsHeartbeat() bool { |
| 51 | return e.Valid() && strings.HasPrefix(string(e), "hb_") |
| 52 | } |
| 53 | |
| 54 | // ParseEvent parses the raw event data into the provided event. It fails if |
| 55 | // there is any unknown fields or extra data at the end of the JSON. The |
no test coverage detected