Class: PixiClient::Requests::GetOrderLineHistory
- Defined in:
- lib/pixi_client/requests/get_order_line_history.rb
Constant Summary
Constants inherited from Base
Base::FIVE_MINUTES, Base::TIME_STRING_FORMAT
Instance Attribute Summary collapse
-
#order_line_key ⇒ Object
Returns the value of attribute order_line_key.
Instance Method Summary collapse
- #api_method ⇒ Object
-
#initialize(order_line_key) ⇒ GetOrderLineHistory
constructor
Pixi* documentation says that the pixi order number is mandatory for this requests.
- #message ⇒ Object
Methods inherited from Base
Constructor Details
#initialize(order_line_key) ⇒ GetOrderLineHistory
Pixi* documentation says that the pixi order number is mandatory for this requests
8 9 10 |
# File 'lib/pixi_client/requests/get_order_line_history.rb', line 8 def initialize(order_line_key) self.order_line_key = order_line_key end |
Instance Attribute Details
#order_line_key ⇒ Object
Returns the value of attribute order_line_key.
4 5 6 |
# File 'lib/pixi_client/requests/get_order_line_history.rb', line 4 def order_line_key @order_line_key end |
Instance Method Details
#api_method ⇒ Object
12 13 14 |
# File 'lib/pixi_client/requests/get_order_line_history.rb', line 12 def api_method :pixi_get_orderline_history end |
#message ⇒ Object
16 17 18 |
# File 'lib/pixi_client/requests/get_order_line_history.rb', line 16 def { 'OrderlineKey' => order_line_key} end |