Class: Vop::Request

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(command_name, param_values, extra = {}) ⇒ Request

Returns a new instance of Request.



222
223
224
225
226
# File 'lib/vop.rb', line 222

def initialize(command_name, param_values, extra = {})
  @command_name = command_name
  @param_values = param_values
  # fuck extra
end

Instance Attribute Details

#command_nameObject (readonly)

Returns the value of attribute command_name.



220
221
222
# File 'lib/vop.rb', line 220

def command_name
  @command_name
end

#param_valuesObject (readonly)

Returns the value of attribute param_values.



220
221
222
# File 'lib/vop.rb', line 220

def param_values
  @param_values
end