github.com/algorand/go-algorand-sdk@v1.24.0/client/v2/common/models/eval_delta.go (about)

     1  package models
     2  
     3  // EvalDelta represents a TEAL value delta.
     4  type EvalDelta struct {
     5  	// Action (at) delta action.
     6  	Action uint64 `json:"action"`
     7  
     8  	// Bytes (bs) bytes value.
     9  	Bytes string `json:"bytes,omitempty"`
    10  
    11  	// Uint (ui) uint value.
    12  	Uint uint64 `json:"uint,omitempty"`
    13  }