github.com/prebid/prebid-server/v2@v2.18.0/config/usersync.go (about) 1 package config 2 3 // UserSync specifies the static global user sync configuration. 4 type UserSync struct { 5 Cooperative UserSyncCooperative `mapstructure:"coop_sync"` 6 ExternalURL string `mapstructure:"external_url"` 7 RedirectURL string `mapstructure:"redirect_url"` 8 PriorityGroups [][]string `mapstructure:"priority_groups"` 9 } 10 11 // UserSyncCooperative specifies the static global default cooperative cookie sync 12 type UserSyncCooperative struct { 13 EnabledByDefault bool `mapstructure:"default"` 14 }