mirror of
https://github.com/foomo/sesamy-go.git
synced 2025-10-16 12:35:43 +00:00
13 lines
493 B
Go
13 lines
493 B
Go
package params
|
|
|
|
// PageView https://developers.google.com/tag-platform/gtagjs/reference/events#page_view
|
|
type PageView struct {
|
|
ClientID string `json:"client_id,omitempty"`
|
|
Language string `json:"language,omitempty"`
|
|
PageEncoding string `json:"page_encoding,omitempty"`
|
|
PageLocation string `json:"page_location,omitempty"`
|
|
PageReferrer string `json:"page_referrer,omitempty"`
|
|
PageTitle string `json:"page_title,omitempty"`
|
|
UserAgent string `json:"user_agent,omitempty"`
|
|
}
|