Class JsonExecutionResult
- java.lang.Object
-
- com.syntifi.casper.sdk.model.deploy.JsonExecutionResult
-
public class JsonExecutionResult extends java.lang.ObjectThe execution result of a single deploy.- Since:
- 0.0.1
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classJsonExecutionResult.JsonExecutionResultBuilder
-
Constructor Summary
Constructors Constructor Description JsonExecutionResult()JsonExecutionResult(java.lang.String blockHash, ExecutionResult result)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static JsonExecutionResult.JsonExecutionResultBuilderbuilder()java.lang.StringgetBlockHash()The block hash.ExecutionResultgetResult()voidsetBlockHash(java.lang.String blockHash)The block hash.voidsetResult(ExecutionResult result)
-
-
-
Constructor Detail
-
JsonExecutionResult
public JsonExecutionResult(java.lang.String blockHash, ExecutionResult result)
-
JsonExecutionResult
public JsonExecutionResult()
-
-
Method Detail
-
builder
public static JsonExecutionResult.JsonExecutionResultBuilder builder()
-
getBlockHash
public java.lang.String getBlockHash()
The block hash.
-
getResult
public ExecutionResult getResult()
- See Also:
ExecutionResult
-
setBlockHash
public void setBlockHash(java.lang.String blockHash)
The block hash.
-
setResult
public void setResult(ExecutionResult result)
- See Also:
ExecutionResult
-
-