mirror of
https://github.com/foomo/contentserver.git
synced 2025-10-16 12:25:44 +00:00
16 lines
373 B
Go
16 lines
373 B
Go
package requests
|
|
|
|
type Env struct {
|
|
Dimensions []string `json:"dimensions"`
|
|
Groups []string `json:"groups"`
|
|
Data interface{} `json:"data"`
|
|
}
|
|
|
|
type Node struct {
|
|
Id string `json:"id"`
|
|
Dimension string `json:"dimension"`
|
|
MimeTypes []string `json:"mimeTypes"`
|
|
Expand bool `json:"expand"`
|
|
DataFields []string `json:"dataFields"`
|
|
}
|