We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b28c332 commit 4e1336cCopy full SHA for 4e1336c
tree.go
@@ -23,14 +23,15 @@ type Tree struct {
23
24
ctx context.Context
25
26
- ID int `json:"id"`
27
- Name string `json:"name"`
28
- ParentID int `json:"parent_id"`
29
- Value interface{} `json:"value"`
30
- Operator string `json:"operator"`
31
- Key string `json:"key"`
32
- Order int `json:"order"`
33
- Content interface{} `json:"content"`
+ ID int `json:"id"`
+ Name string `json:"name"`
+ ParentID int `json:"parent_id"`
+ Value interface{} `json:"value"`
+ Operator string `json:"operator"`
+ Key string `json:"key"`
+ Order int `json:"order"`
+ Content interface{} `json:"content"`
34
+ Headers map[string]interface{} `json:"headers"`
35
}
36
37
type byOrder []*Tree
0 commit comments