Class JsonExecutionResult
- java.lang.Object
-
- com.syntifi.casper.sdk.model.deploy.JsonExecutionResult
-
public class JsonExecutionResult extends java.lang.Object
The execution result of a single deploy.- Since:
- 0.0.1
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
JsonExecutionResult.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.JsonExecutionResultBuilder
builder()
java.lang.String
getBlockHash()
The block hash.ExecutionResult
getResult()
void
setBlockHash(java.lang.String blockHash)
The block hash.void
setResult(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
-
-