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

     1  package models
     2  
     3  // BoxesResponse box names of an application
     4  type BoxesResponse struct {
     5  	// ApplicationId (appidx) application index.
     6  	ApplicationId uint64 `json:"application-id"`
     7  
     8  	// Boxes
     9  	Boxes []BoxDescriptor `json:"boxes"`
    10  
    11  	// NextToken used for pagination, when making another request provide this token
    12  	// with the next parameter.
    13  	NextToken string `json:"next-token,omitempty"`
    14  }