github.com/koko1123/flow-go-1@v0.29.6/engine/access/rest/models/model_transaction_result.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 TransactionResult struct {
    12  	BlockId    string                `json:"block_id"`
    13  	Execution  *TransactionExecution `json:"execution,omitempty"`
    14  	Status     *TransactionStatus    `json:"status"`
    15  	StatusCode int32                 `json:"status_code"`
    16  	// Provided transaction error in case the transaction wasn't successful.
    17  	ErrorMessage    string  `json:"error_message"`
    18  	ComputationUsed string  `json:"computation_used"`
    19  	Events          []Event `json:"events"`
    20  	Links           *Links  `json:"_links,omitempty"`
    21  }