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.
1024 1025 1026 1027 |
# File 'lib/FlightXML2REST.rb', line 1024 def initialize(howMany = nil, ident = nil) @howMany = howMany @ident = ident end |
Instance Attribute Details
#howMany ⇒ Object
Returns the value of attribute howMany.
1023 1024 1025 |
# File 'lib/FlightXML2REST.rb', line 1023 def howMany @howMany end |
#ident ⇒ Object
Returns the value of attribute ident.
1023 1024 1025 |
# File 'lib/FlightXML2REST.rb', line 1023 def ident @ident end |
Instance Method Details
#post ⇒ Object
1028 1029 1030 |
# File 'lib/FlightXML2REST.rb', line 1028 def post "howMany=#@howMany&ident=#@ident" end |