github.com/algorand/go-algorand-sdk@v1.24.0/client/v2/common/models/block_response.go (about) 1 package models 2 3 import "github.com/algorand/go-algorand-sdk/types" 4 5 // BlockResponse encoded block object. 6 type BlockResponse struct { 7 // Block block header data. 8 Block types.Block `json:"block"` 9 10 // Cert optional certificate object. This is only included when the format is set 11 // to message pack. 12 Cert *map[string]interface{} `json:"cert,omitempty"` 13 }