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 executor
executionOptions - Execution options.
abi - Contract ABI for decoding output messages
skipTransactionCheck - Skip transaction check flag
bocCache - Cache type to put the result. The BOC itself returned if no cache type provided
returnUpdatedAccount - 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 Details

  • Method Details

    • toString

      public final String 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.
      Specified by:
      toString in class Record
      Returns:
      a string representation of this object
    • 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.
      Specified by:
      hashCode in class Record
      Returns:
      a hash code value for this object
    • equals

      public final boolean equals(Object o)
      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 with Objects::equals(Object,Object).
      Specified by:
      equals in class Record
      Parameters:
      o - the object with which to compare
      Returns:
      true if this object is the same as the o argument; false otherwise.
    • message

      public String message()
      Returns the value of the message record component.
      Returns:
      the value of the message record component
    • account

      public Tvm.AccountForExecutor account()
      Returns the value of the account record component.
      Returns:
      the value of the account record component
    • executionOptions

      public Tvm.ExecutionOptions executionOptions()
      Returns the value of the executionOptions record component.
      Returns:
      the value of the executionOptions record component
    • abi

      public Abi.ABI abi()
      Returns the value of the abi record component.
      Returns:
      the value of the abi record component
    • skipTransactionCheck

      public Boolean skipTransactionCheck()
      Returns the value of the skipTransactionCheck record component.
      Returns:
      the value of the skipTransactionCheck record component
    • bocCache

      public Boc.BocCacheType bocCache()
      Returns the value of the bocCache record component.
      Returns:
      the value of the bocCache record component
    • returnUpdatedAccount

      public Boolean returnUpdatedAccount()
      Returns the value of the returnUpdatedAccount record component.
      Returns:
      the value of the returnUpdatedAccount record component