DeploymentResult.java

  1. /*
  2.  * @copyright defined in LICENSE.txt
  3.  */

  4. package ship.build.web.model;

  5. import hera.api.model.ContractInterface;
  6. import lombok.Getter;
  7. import lombok.Setter;

  8. public class DeploymentResult {
  9.   @Getter
  10.   @Setter
  11.   protected String buildUuid;

  12.   @Getter
  13.   @Setter
  14.   protected String encodedContractTransactionHash;

  15.   @Getter
  16.   @Setter
  17.   protected ContractInterface contractInterface;

  18.   public String toString() {
  19.     return "Transaction[" + getEncodedContractTransactionHash() + "]";
  20.   }
  21. }