mirror of
https://github.com/ProtonMail/go-proton-api.git
synced 2025-12-23 23:57:50 -05:00
13 lines
310 B
Go
13 lines
310 B
Go
package proton
|
|
|
|
type ObservabilityBatch struct {
|
|
Metrics []ObservabilityMetric `json:"Metrics"`
|
|
}
|
|
|
|
type ObservabilityMetric struct {
|
|
Name string `json:"Name"`
|
|
Version int `json:"Version"`
|
|
Timestamp int64 `json:"Timestamp"` // Unix timestamp
|
|
Data interface{} `json:"Data"`
|
|
}
|