add new paramter rename to set

This commit is contained in:
Adrian Zuercher
2025-07-24 09:51:09 +02:00
parent 2dc3baca3c
commit 8e742ba1d3

View File

@@ -12,6 +12,7 @@ type Set struct {
Value any `json:"value,omitempty"` // dbm value Value any `json:"value,omitempty"` // dbm value
Rights Rights `json:"rights,omitempty"` // dbm read /write rights Rights Rights `json:"rights,omitempty"` // dbm read /write rights
Create bool `json:"create,omitempty"` // dbm create new datapoint Create bool `json:"create,omitempty"` // dbm create new datapoint
Rename bool `json:"rename,omitempty"`
Updated bool `json:"-"` Updated bool `json:"-"`
} }