class TonSdk::Tvm::ParamsOfRunGet
Attributes
account[R]
execution_options[R]
function_name[R]
input[R]
tuple_list_as_array[R]
Public Class Methods
new(account:, function_name:, input: nil, execution_options: nil, tuple_list_as_array: nil)
click to toggle source
# File lib/ton_sdk_client/tvm.rb, line 139 def initialize(account:, function_name:, input: nil, execution_options: nil, tuple_list_as_array: nil) @account = account @function_name = function_name @input = input @execution_options = execution_options @tuple_list_as_array = tuple_list_as_array end
Public Instance Methods
to_h()
click to toggle source
# File lib/ton_sdk_client/tvm.rb, line 147 def to_h { account: @account, function_name: @function_name, input: @input, execution_options: @execution_options&.to_h, tuple_list_as_array: @tuple_list_as_array } end