github.com/koko1123/flow-go-1@v0.29.6/engine/access/rest/models/model_transaction_execution.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  // TransactionExecution : This value indicates whether the transaction execution succeded or not, this value should be checked when determining transaction success.
    12  type TransactionExecution string
    13  
    14  // List of TransactionExecution
    15  const (
    16  	PENDING_TransactionExecution TransactionExecution = "Pending"
    17  	SUCCESS_TransactionExecution TransactionExecution = "Success"
    18  	FAILURE_TransactionExecution TransactionExecution = "Failure"
    19  )