Module java4ever.binding
Package tech.deplant.java4ever.binding
Record Class Tvm.ResultOfRunExecutor
java.lang.Object
java.lang.Record
tech.deplant.java4ever.binding.Tvm.ResultOfRunExecutor
- Record Components:
transaction
- In addition to the regular transaction fields there is a `boc` field encoded with `base64` which contains source transaction BOC. Parsed transaction.outMessages
- Encoded as `base64` List of output messages' BOCs.decoded
- Optional decoded message bodies according to the optional `abi` parameter.account
- Encoded as `base64` Updated account state BOC.fees
- Transaction fees
- Enclosing class:
Tvm
public static record Tvm.ResultOfRunExecutor(com.fasterxml.jackson.databind.JsonNode transaction, String[] outMessages, Processing.DecodedOutput decoded, String account, Tvm.TransactionFees fees)
extends Record
-
Constructor Summary
ConstructorsConstructorDescriptionResultOfRunExecutor
(com.fasterxml.jackson.databind.JsonNode transaction, String[] outMessages, Processing.DecodedOutput decoded, String account, Tvm.TransactionFees fees) Creates an instance of aResultOfRunExecutor
record class. -
Method Summary
Modifier and TypeMethodDescriptionaccount()
Returns the value of theaccount
record component.decoded()
Returns the value of thedecoded
record component.final boolean
Indicates whether some other object is "equal to" this one.fees()
Returns the value of thefees
record component.final int
hashCode()
Returns a hash code value for this object.String[]
Returns the value of theoutMessages
record component.final String
toString()
Returns a string representation of this record class.com.fasterxml.jackson.databind.JsonNode
Returns the value of thetransaction
record component.
-
Constructor Details
-
ResultOfRunExecutor
public ResultOfRunExecutor(com.fasterxml.jackson.databind.JsonNode transaction, String[] outMessages, Processing.DecodedOutput decoded, String account, Tvm.TransactionFees fees) Creates an instance of aResultOfRunExecutor
record class.- Parameters:
transaction
- the value for thetransaction
record componentoutMessages
- the value for theoutMessages
record componentdecoded
- the value for thedecoded
record componentaccount
- the value for theaccount
record componentfees
- the value for thefees
record component
-
-
Method Details
-
toString
Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components. -
hashCode
public final int hashCode()Returns a hash code value for this object. The value is derived from the hash code of each of the record components. -
equals
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. All components in this record class are compared withObjects::equals(Object,Object)
. -
transaction
public com.fasterxml.jackson.databind.JsonNode transaction()Returns the value of thetransaction
record component.- Returns:
- the value of the
transaction
record component
-
outMessages
Returns the value of theoutMessages
record component.- Returns:
- the value of the
outMessages
record component
-
decoded
Returns the value of thedecoded
record component.- Returns:
- the value of the
decoded
record component
-
account
Returns the value of theaccount
record component.- Returns:
- the value of the
account
record component
-
fees
Returns the value of thefees
record component.- Returns:
- the value of the
fees
record component
-