mirror of
https://github.com/status-im/fathom.git
synced 2025-03-01 11:30:28 +00:00
13 lines
488 B
Go
13 lines
488 B
Go
package models
|
|
|
|
// Total represents a daily aggregated total for a metric
|
|
type Total struct {
|
|
ID int64 `json:"-"`
|
|
PageID int64 `db:"page_id" json:"-"`
|
|
Value string `db:"value" json:"value"`
|
|
Count int64 `db:"count" json:"count"`
|
|
CountUnique int64 `db:"count_unique" json:"count_unique"`
|
|
PercentageOfTotal float64 `db:"-" json:"percentage_of_total"`
|
|
Date string `db:"date_group" json:"date,omitempty"`
|
|
}
|