mirror of
https://github.com/foomo/sesamy-cli.git
synced 2025-10-16 12:35:36 +00:00
13 lines
519 B
Go
13 lines
519 B
Go
package config
|
|
|
|
type GoogleTag struct {
|
|
// A tag ID is an identifier that you put on your page to load a given Google tag
|
|
TagID string `json:"tagId" yaml:"tagId"`
|
|
// Whether a page_view should be sent on initial load
|
|
SendPageView bool `json:"sendPageView" yaml:"sendPageView"`
|
|
// Data layer variables to be added to the event settings
|
|
DataLayerVariables map[string]string `json:"dataLayerVariables" yaml:"dataLayerVariables"`
|
|
// TypeScript settings
|
|
TypeScript TypeScript `json:"typeScript" yaml:"typeScript"`
|
|
}
|