Class: Hoss::Event::Request Private
- Inherits:
-
Object
- Object
- Hoss::Event::Request
- Extended by:
- Forwardable
- Defined in:
- lib/hoss/event.rb
This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.
Instance Attribute Summary collapse
- #body ⇒ Object private
- #headers ⇒ Object private
- #method ⇒ Object private
- #received_at ⇒ Object private
- #url ⇒ Object private
Instance Method Summary collapse
-
#initialize ⇒ Request
constructor
private
A new instance of Request.
Constructor Details
#initialize ⇒ Request
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Returns a new instance of Request.
32 33 34 |
# File 'lib/hoss/event.rb', line 32 def initialize @headers = {} end |
Instance Attribute Details
#body ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
35 36 37 |
# File 'lib/hoss/event.rb', line 35 def body @body end |
#headers ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
35 36 37 |
# File 'lib/hoss/event.rb', line 35 def headers @headers end |
#method ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
35 36 37 |
# File 'lib/hoss/event.rb', line 35 def method @method end |
#received_at ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
35 36 37 |
# File 'lib/hoss/event.rb', line 35 def received_at @received_at end |
#url ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
35 36 37 |
# File 'lib/hoss/event.rb', line 35 def url @url end |