github.com/algorand/go-algorand-sdk@v1.24.0/client/v2/common/models/teal_key_value.go (about) 1 package models 2 3 // TealKeyValue represents a key-value pair in an application store. 4 type TealKeyValue struct { 5 // Key 6 Key string `json:"key"` 7 8 // Value represents a TEAL value. 9 Value TealValue `json:"value"` 10 }