Class: Ethereum::FunctionInput

Inherits:
Object
  • Object
show all
Defined in:
lib/ethereum/function_input.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data) ⇒ FunctionInput

Returns a new instance of FunctionInput.



6
7
8
9
# File 'lib/ethereum/function_input.rb', line 6

def initialize(data)
  @type = data["type"]
  @name = data["name"]
end

Instance Attribute Details

#nameObject

Returns the value of attribute name.



4
5
6
# File 'lib/ethereum/function_input.rb', line 4

def name
  @name
end

#typeObject

Returns the value of attribute type.



4
5
6
# File 'lib/ethereum/function_input.rb', line 4

def type
  @type
end