Add extra parameters to report projections

This commit is contained in:
Tomaž Jerman
2021-08-16 09:16:07 +02:00
parent a6c7f90663
commit 9d5d9654c1
+5 -3
View File
@@ -48,11 +48,13 @@ type (
}
ReportProjection struct {
Name string `json:"name"`
Key string `json:"key"`
Title string `json:"title"`
Description string `json:"description"`
Key string `json:"key"`
Kind string `json:"kind"`
Options map[string]interface{} `json:"options"`
Options map[string]interface{} `json:"options,omitempty"`
Elements []interface{} `json:"elements"`
XYWH [4]int `json:"xywh"`
}
ReportProjectionSet []*ReportProjection