fathom/pkg/models/pageview.go

19 lines
470 B
Go
Raw Normal View History

2016-11-21 16:36:25 +00:00
package models
import (
"time"
)
2016-11-21 16:36:25 +00:00
type Pageview struct {
ID string `db:"id"`
Hostname string `db:"hostname"`
Pathname string `db:"pathname"`
IsNewVisitor bool `db:"is_new_visitor"`
IsNewSession bool `db:"is_new_session"`
IsUnique bool `db:"is_unique"`
IsBounce bool `db:"is_bounce"`
Referrer string `db:"referrer"`
Duration int64 `db:"duration"`
Timestamp time.Time `db:"timestamp"`
}