Class DeployInfo
- java.lang.Object
-
- com.syntifi.casper.sdk.model.deploy.DeployInfo
-
public class DeployInfo extends java.lang.Object
Information relating to the given Deploy- Since:
- 0.0.1
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
DeployInfo.DeployInfoBuilder
-
Constructor Summary
Constructors Constructor Description DeployInfo()
DeployInfo(java.lang.String hash, java.lang.String from, java.math.BigInteger gas, URef source, java.util.List<java.lang.String> transfers)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static DeployInfo.DeployInfoBuilder
builder()
java.lang.String
getFrom()
Account identifier of the creator of the Deploy.java.math.BigInteger
getGas()
Gas cost of executing the Deploy.java.lang.String
getHash()
The relevant Deployprotected java.lang.String
getJsonGas()
URef
getSource()
Source purse used for payment of the Deploy.java.util.List<java.lang.String>
getTransfers()
Transfers performed by the Deploy.void
setFrom(java.lang.String from)
Account identifier of the creator of the Deploy.void
setGas(java.math.BigInteger gas)
Gas cost of executing the Deploy.void
setHash(java.lang.String hash)
The relevant Deployprotected void
setJsonGas(java.lang.String value)
void
setSource(URef source)
Source purse used for payment of the Deploy.void
setTransfers(java.util.List<java.lang.String> transfers)
Transfers performed by the Deploy.
-
-
-
Constructor Detail
-
DeployInfo
public DeployInfo(java.lang.String hash, java.lang.String from, java.math.BigInteger gas, URef source, java.util.List<java.lang.String> transfers)
-
DeployInfo
public DeployInfo()
-
-
Method Detail
-
getJsonGas
@ExcludeFromJacocoGeneratedReport protected java.lang.String getJsonGas()
-
setJsonGas
@ExcludeFromJacocoGeneratedReport protected void setJsonGas(java.lang.String value)
-
builder
public static DeployInfo.DeployInfoBuilder builder()
-
getHash
public java.lang.String getHash()
The relevant Deploy
-
getFrom
public java.lang.String getFrom()
Account identifier of the creator of the Deploy.
-
getGas
public java.math.BigInteger getGas()
Gas cost of executing the Deploy.
-
getTransfers
public java.util.List<java.lang.String> getTransfers()
Transfers performed by the Deploy.
-
setHash
public void setHash(java.lang.String hash)
The relevant Deploy
-
setFrom
public void setFrom(java.lang.String from)
Account identifier of the creator of the Deploy.
-
setGas
public void setGas(java.math.BigInteger gas)
Gas cost of executing the Deploy.
-
setSource
public void setSource(URef source)
Source purse used for payment of the Deploy.- See Also:
URef
-
setTransfers
public void setTransfers(java.util.List<java.lang.String> transfers)
Transfers performed by the Deploy.
-
-