mirror of
https://github.com/foomo/sesamy-cli.git
synced 2025-10-16 12:35:36 +00:00
19 lines
604 B
Go
19 lines
604 B
Go
package config
|
|
|
|
import (
|
|
"github.com/foomo/gocontemplate/pkg/contemplate"
|
|
)
|
|
|
|
type Emarsys struct {
|
|
// Enable provider
|
|
Enabled bool `json:"enabled" yaml:"enabled"`
|
|
// Emarsys merchant id
|
|
MerchantID string `json:"merchantId" yaml:"merchantId"`
|
|
// Google Consent settings
|
|
GoogleConsent GoogleConsent `json:"googleConsent" yaml:"googleConsent"`
|
|
// Google Tag Manager web container settings
|
|
WebContainer contemplate.Config `json:"webContainer" yaml:"webContainer"`
|
|
// Google Tag Manager server container settings
|
|
ServerContainer contemplate.Config `json:"serverContainer" yaml:"serverContainer"`
|
|
}
|