github.com/algorand/go-algorand-sdk@v1.24.0/client/v2/common/models/eval_delta_key_value.go (about) 1 package models 2 3 // EvalDeltaKeyValue key-value pairs for StateDelta. 4 type EvalDeltaKeyValue struct { 5 // Key 6 Key string `json:"key"` 7 8 // Value represents a TEAL value delta. 9 Value EvalDelta `json:"value"` 10 }