mirror of
https://github.com/foomo/sesamy-go.git
synced 2025-10-16 12:35:43 +00:00
15 lines
511 B
Go
15 lines
511 B
Go
package params
|
|
|
|
// PageView https://developers.google.com/analytics/devguides/collection/ga4/views?client_type=gtag#manually_send_page_view_events
|
|
type PageView struct {
|
|
*MPv2 `json:",inline"`
|
|
PageTitle string `json:"page_title,omitempty"`
|
|
PageLocation string `json:"page_location,omitempty"`
|
|
}
|
|
|
|
type MPv2 struct {
|
|
DebugMode bool `json:"debug_mode,omitempty"`
|
|
SessionID string `json:"session_id,omitempty"`
|
|
EngagementTimeMSec int64 `json:"engagement_time_msec,omitempty"`
|
|
}
|