mirror of
https://github.com/foomo/sesamy-cli.git
synced 2025-10-16 12:35:36 +00:00
15 lines
756 B
Go
15 lines
756 B
Go
package config
|
|
|
|
type GoogleTagManager struct {
|
|
// Google Tag Manager account id
|
|
AccountID string `json:"accountId" yaml:"accountId"`
|
|
// Google Tag Manager web container settings
|
|
WebContainer GoogleTagManagerContainer `json:"webContainer" yaml:"webContainer"`
|
|
// Google Tag Manager server container settings
|
|
ServerContainer GoogleTagManagerContainer `json:"serverContainer" yaml:"serverContainer"`
|
|
// Google Tag Manager web container variables
|
|
WebContaienrVariables GoogleTagManagerWebContainerVariables `json:"webContainerVariables" yaml:"webContainerVariables"`
|
|
// Google Tag Manager server container variables
|
|
ServerContaienrVariables GoogleTagManagerServerContainerVariables `json:"serverContainerVariables" yaml:"serverContainerVariables"`
|
|
}
|