Class: SearchBirdseyeInFlightRequest
- Inherits:
-
Object
- Object
- SearchBirdseyeInFlightRequest
- Defined in:
- lib/FlightXML2REST.rb
Overview
SearchBirdseyeInFlight
Instance Attribute Summary collapse
-
#howMany ⇒ Object
Returns the value of attribute howMany.
-
#offset ⇒ Object
Returns the value of attribute offset.
-
#query ⇒ Object
Returns the value of attribute query.
Instance Method Summary collapse
-
#initialize(howMany = nil, offset = nil, query = nil) ⇒ SearchBirdseyeInFlightRequest
constructor
A new instance of SearchBirdseyeInFlightRequest.
- #post ⇒ Object
Constructor Details
#initialize(howMany = nil, offset = nil, query = nil) ⇒ SearchBirdseyeInFlightRequest
Returns a new instance of SearchBirdseyeInFlightRequest.
2303 2304 2305 2306 2307 |
# File 'lib/FlightXML2REST.rb', line 2303 def initialize(howMany = nil, offset = nil, query = nil) @howMany = howMany @offset = offset @query = query end |
Instance Attribute Details
#howMany ⇒ Object
Returns the value of attribute howMany.
2302 2303 2304 |
# File 'lib/FlightXML2REST.rb', line 2302 def howMany @howMany end |
#offset ⇒ Object
Returns the value of attribute offset.
2302 2303 2304 |
# File 'lib/FlightXML2REST.rb', line 2302 def offset @offset end |
#query ⇒ Object
Returns the value of attribute query.
2302 2303 2304 |
# File 'lib/FlightXML2REST.rb', line 2302 def query @query end |
Instance Method Details
#post ⇒ Object
2308 2309 2310 |
# File 'lib/FlightXML2REST.rb', line 2308 def post "howMany=#@howMany&offset=#@offset&query=#@query" end |