Class: FlightInfoRequest
- Inherits:
-
Object
- Object
- FlightInfoRequest
- Defined in:
- lib/FlightXML2REST.rb
Overview
FlightInfo
Instance Attribute Summary collapse
-
#howMany ⇒ Object
Returns the value of attribute howMany.
-
#ident ⇒ Object
Returns the value of attribute ident.
Instance Method Summary collapse
-
#initialize(howMany = nil, ident = nil) ⇒ FlightInfoRequest
constructor
A new instance of FlightInfoRequest.
- #post ⇒ Object
Constructor Details
#initialize(howMany = nil, ident = nil) ⇒ FlightInfoRequest
Returns a new instance of FlightInfoRequest.
926 927 928 929 |
# File 'lib/FlightXML2REST.rb', line 926 def initialize(howMany = nil, ident = nil) @howMany = howMany @ident = ident end |
Instance Attribute Details
#howMany ⇒ Object
Returns the value of attribute howMany.
925 926 927 |
# File 'lib/FlightXML2REST.rb', line 925 def howMany @howMany end |
#ident ⇒ Object
Returns the value of attribute ident.
925 926 927 |
# File 'lib/FlightXML2REST.rb', line 925 def ident @ident end |
Instance Method Details
#post ⇒ Object
930 931 932 |
# File 'lib/FlightXML2REST.rb', line 930 def post "howMany=#@howMany&ident=#@ident" end |