Class: Vop::Request
- Inherits:
-
Object
- Object
- Vop::Request
- Defined in:
- lib/vop.rb
Instance Attribute Summary collapse
-
#command_name ⇒ Object
readonly
Returns the value of attribute command_name.
-
#param_values ⇒ Object
readonly
Returns the value of attribute param_values.
Instance Method Summary collapse
-
#initialize(command_name, param_values, extra = {}) ⇒ Request
constructor
A new instance of Request.
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_name ⇒ Object (readonly)
Returns the value of attribute command_name.
220 221 222 |
# File 'lib/vop.rb', line 220 def command_name @command_name end |
#param_values ⇒ Object (readonly)
Returns the value of attribute param_values.
220 221 222 |
# File 'lib/vop.rb', line 220 def param_values @param_values end |