github.com/onflow/flow-go@v0.35.7-crescendo-preview.23-atree-inlining/engine/access/rest/models/model_block.go (about)

     1  /*
     2   * Access API
     3   *
     4   * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
     5   *
     6   * API version: 1.0.0
     7   * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git)
     8   */
     9  package models
    10  
    11  type Block struct {
    12  	Header          *BlockHeader     `json:"header"`
    13  	Payload         *BlockPayload    `json:"payload,omitempty"`
    14  	ExecutionResult *ExecutionResult `json:"execution_result,omitempty"`
    15  	Expandable      *BlockExpandable `json:"_expandable"`
    16  	Links           *Links           `json:"_links,omitempty"`
    17  	BlockStatus     string           `json:"block_status"`
    18  }