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

     1  package models
     2  
     3  // ApplicationStateSchema specifies maximums on the number of each type that may be
     4  // stored.
     5  type ApplicationStateSchema struct {
     6  	// NumByteSlice (nbs) num of byte slices.
     7  	NumByteSlice uint64 `json:"num-byte-slice"`
     8  
     9  	// NumUint (nui) num of uints.
    10  	NumUint uint64 `json:"num-uint"`
    11  }