mirror of
https://github.com/foomo/sesamy-cli.git
synced 2025-10-16 12:35:36 +00:00
11 lines
329 B
Go
11 lines
329 B
Go
package config
|
|
|
|
type GoogleTagManagerContainer struct {
|
|
// The container tag id
|
|
TagID string `json:"tagId" yaml:"tagId"`
|
|
// The container id
|
|
ContainerID string `json:"containerId" yaml:"containerId"`
|
|
// (Optional) The workspace id that should be used by the api
|
|
WorkspaceID string `json:"workspaceId" yaml:"workspaceId"`
|
|
}
|