mirror of
https://github.com/foomo/contentserver.git
synced 2025-10-16 12:25:44 +00:00
21 lines
432 B
Go
21 lines
432 B
Go
package requests
|
|
|
|
type Defaults struct {
|
|
Region string `json:"region"`
|
|
Language string `json:"language"`
|
|
}
|
|
|
|
type Env struct {
|
|
Defaults *Defaults `json:"defaults"`
|
|
Groups []string `json:"groups"`
|
|
State string
|
|
Data interface{} `json:"data"`
|
|
}
|
|
|
|
type Node struct {
|
|
Id string `json:"id"`
|
|
MimeTypes []string `json:"mimeTypes"`
|
|
Expand bool `json:"expand"`
|
|
DataFields []string `json:"dataFields"`
|
|
}
|