Files
go-proton-api/data_type.go
2023-04-11 09:47:33 +02:00

13 lines
222 B
Go

package proton
type SendStatsReq struct {
MeasurementGroup string
Event string
Values map[string]any
Dimensions map[string]any
}
type SendStatsMultiReq struct {
EventInfo []SendStatsReq
}