Это старая версия документа!
Data Format
input
type tStorageInput struct {
Uid int64 `json:"Uid"`
Token string `json:"Token"`
Bundle string `json:"Bundle"`
K_Key1 value1 `json:"K_Key1"`
K_Key2 value2 `json:"K_Key2"`
K_Key3 value3 `json:"K_Key3"`
.......
K_KeyN valueN `json:"K_KeyN"`
}
Data = json(map[string]any)
any = int||long||float||string
output
type tStorageOutput struct {
Data map[string]any //changed data
}