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- Input message BOC. Must be encoded as base64.account- Account to run on executorexecutionOptions- Execution options.abi- Contract ABI for decoding output messagesskipTransactionCheck- Skip transaction check flagbocCache- Cache type to put the result. The BOC itself returned if no cache type providedreturnUpdatedAccount- Return updated account flag. Empty string is returned if the flag is `false`
- 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 aParamsOfRunExecutorrecord class. -
Method Summary
Modifier and TypeMethodDescriptionabi()Returns the value of theabirecord component.account()Returns the value of theaccountrecord component.bocCache()Returns the value of thebocCacherecord component.final booleanIndicates whether some other object is "equal to" this one.Returns the value of theexecutionOptionsrecord component.final inthashCode()Returns a hash code value for this object.message()Returns the value of themessagerecord component.Returns the value of thereturnUpdatedAccountrecord component.Returns the value of theskipTransactionCheckrecord component.final StringtoString()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 aParamsOfRunExecutorrecord class.- Parameters:
message- the value for themessagerecord componentaccount- the value for theaccountrecord componentexecutionOptions- the value for theexecutionOptionsrecord componentabi- the value for theabirecord componentskipTransactionCheck- the value for theskipTransactionCheckrecord componentbocCache- the value for thebocCacherecord componentreturnUpdatedAccount- the value for thereturnUpdatedAccountrecord 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 themessagerecord component.- Returns:
- the value of the
messagerecord component
-
account
Returns the value of theaccountrecord component.- Returns:
- the value of the
accountrecord component
-
executionOptions
Returns the value of theexecutionOptionsrecord component.- Returns:
- the value of the
executionOptionsrecord component
-
abi
Returns the value of theabirecord component.- Returns:
- the value of the
abirecord component
-
skipTransactionCheck
Returns the value of theskipTransactionCheckrecord component.- Returns:
- the value of the
skipTransactionCheckrecord component
-
bocCache
Returns the value of thebocCacherecord component.- Returns:
- the value of the
bocCacherecord component
-
returnUpdatedAccount
Returns the value of thereturnUpdatedAccountrecord component.- Returns:
- the value of the
returnUpdatedAccountrecord component
-