Module java4ever.binding
Package tech.deplant.java4ever.binding
Record Class Tvm.ParamsOfRunExecutor
java.lang.Object
java.lang.Record
tech.deplant.java4ever.binding.Tvm.ParamsOfRunExecutor
- Record Components:
message
- Must be encoded as base64. Input message BOC.account
- Account to run on executorexecutionOptions
- Execution options.abi
- Contract ABI for decoding output messagesskipTransactionCheck
- Skip transaction check flagbocCache
- The BOC itself returned if no cache type provided Cache type to put the result.returnUpdatedAccount
- Empty string is returned if the flag is `false` Return updated account flag.
- Enclosing class:
Tvm
public static record Tvm.ParamsOfRunExecutor(String message, Tvm.AccountForExecutor account, Tvm.ExecutionOptions executionOptions, Abi.ABI abi, Boolean skipTransactionCheck, Boc.BocCacheType bocCache, Boolean returnUpdatedAccount)
extends Record
-
Constructor Summary
ConstructorsConstructorDescriptionParamsOfRunExecutor
(String message, Tvm.AccountForExecutor account, Tvm.ExecutionOptions executionOptions, Abi.ABI abi, Boolean skipTransactionCheck, Boc.BocCacheType bocCache, Boolean returnUpdatedAccount) Creates an instance of aParamsOfRunExecutor
record class. -
Method Summary
Modifier and TypeMethodDescriptionabi()
Returns the value of theabi
record component.account()
Returns the value of theaccount
record component.bocCache()
Returns the value of thebocCache
record component.final boolean
Indicates whether some other object is "equal to" this one.Returns the value of theexecutionOptions
record component.final int
hashCode()
Returns a hash code value for this object.message()
Returns the value of themessage
record component.Returns the value of thereturnUpdatedAccount
record component.Returns the value of theskipTransactionCheck
record component.final String
toString()
Returns a string representation of this record class.
-
Constructor Details
-
ParamsOfRunExecutor
public ParamsOfRunExecutor(String message, Tvm.AccountForExecutor account, Tvm.ExecutionOptions executionOptions, Abi.ABI abi, Boolean skipTransactionCheck, Boc.BocCacheType bocCache, Boolean returnUpdatedAccount) Creates an instance of aParamsOfRunExecutor
record class.- Parameters:
message
- the value for themessage
record componentaccount
- the value for theaccount
record componentexecutionOptions
- the value for theexecutionOptions
record componentabi
- the value for theabi
record componentskipTransactionCheck
- the value for theskipTransactionCheck
record componentbocCache
- the value for thebocCache
record componentreturnUpdatedAccount
- the value for thereturnUpdatedAccount
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)
. -
message
Returns the value of themessage
record component.- Returns:
- the value of the
message
record component
-
account
Returns the value of theaccount
record component.- Returns:
- the value of the
account
record component
-
executionOptions
Returns the value of theexecutionOptions
record component.- Returns:
- the value of the
executionOptions
record component
-
abi
Returns the value of theabi
record component.- Returns:
- the value of the
abi
record component
-
skipTransactionCheck
Returns the value of theskipTransactionCheck
record component.- Returns:
- the value of the
skipTransactionCheck
record component
-
bocCache
Returns the value of thebocCache
record component.- Returns:
- the value of the
bocCache
record component
-
returnUpdatedAccount
Returns the value of thereturnUpdatedAccount
record component.- Returns:
- the value of the
returnUpdatedAccount
record component
-