Module java4ever.binding
Package tech.deplant.java4ever.binding
Record Class Processing.ResultOfProcessMessage
java.lang.Object
java.lang.Record
tech.deplant.java4ever.binding.Processing.ResultOfProcessMessage
- Record Components:
transaction- Parsed transaction. In addition to the regular transaction fields there is a`boc` field encoded with `base64` which contains sourcetransaction BOC.outMessages- List of output messages' BOCs. Encoded as `base64`decoded- Optional decoded message bodies according to the optional `abi` parameter.fees- Transaction fees
- Enclosing class:
Processing
public static record Processing.ResultOfProcessMessage(Map<String,Object> transaction, String[] outMessages, Processing.DecodedOutput decoded, Tvm.TransactionFees fees)
extends Record
-
Constructor Summary
ConstructorsConstructorDescriptionResultOfProcessMessage(Map<String, Object> transaction, String[] outMessages, Processing.DecodedOutput decoded, Tvm.TransactionFees fees) Creates an instance of aResultOfProcessMessagerecord class. -
Method Summary
Modifier and TypeMethodDescriptiondecoded()Returns the value of thedecodedrecord component.final booleanIndicates whether some other object is "equal to" this one.fees()Returns the value of thefeesrecord component.final inthashCode()Returns a hash code value for this object.String[]Returns the value of theoutMessagesrecord component.final StringtoString()Returns a string representation of this record class.Returns the value of thetransactionrecord component.
-
Constructor Details
-
ResultOfProcessMessage
public ResultOfProcessMessage(Map<String, Object> transaction, String[] outMessages, Processing.DecodedOutput decoded, Tvm.TransactionFees fees) Creates an instance of aResultOfProcessMessagerecord class.- Parameters:
transaction- the value for thetransactionrecord componentoutMessages- the value for theoutMessagesrecord componentdecoded- the value for thedecodedrecord componentfees- the value for thefeesrecord 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
Returns the value of thetransactionrecord component.- Returns:
- the value of the
transactionrecord component
-
outMessages
Returns the value of theoutMessagesrecord component.- Returns:
- the value of the
outMessagesrecord component
-
decoded
Returns the value of thedecodedrecord component.- Returns:
- the value of the
decodedrecord component
-
fees
Returns the value of thefeesrecord component.- Returns:
- the value of the
feesrecord component
-