Class: FlightInfoExRequest
- Inherits:
-
Object
- Object
- FlightInfoExRequest
- Defined in:
- lib/FlightXML2REST.rb
Overview
FlightInfoEx
Instance Attribute Summary collapse
-
#howMany ⇒ Object
Returns the value of attribute howMany.
-
#ident ⇒ Object
Returns the value of attribute ident.
-
#offset ⇒ Object
Returns the value of attribute offset.
Instance Method Summary collapse
-
#initialize(howMany = nil, ident = nil, offset = nil) ⇒ FlightInfoExRequest
constructor
A new instance of FlightInfoExRequest.
- #post ⇒ Object
Constructor Details
#initialize(howMany = nil, ident = nil, offset = nil) ⇒ FlightInfoExRequest
Returns a new instance of FlightInfoExRequest.
1143 1144 1145 1146 1147 |
# File 'lib/FlightXML2REST.rb', line 1143 def initialize(howMany = nil, ident = nil, offset = nil) @howMany = howMany @ident = ident @offset = offset end |
Instance Attribute Details
#howMany ⇒ Object
Returns the value of attribute howMany.
1142 1143 1144 |
# File 'lib/FlightXML2REST.rb', line 1142 def howMany @howMany end |
#ident ⇒ Object
Returns the value of attribute ident.
1142 1143 1144 |
# File 'lib/FlightXML2REST.rb', line 1142 def ident @ident end |
#offset ⇒ Object
Returns the value of attribute offset.
1142 1143 1144 |
# File 'lib/FlightXML2REST.rb', line 1142 def offset @offset end |
Instance Method Details
#post ⇒ Object
1148 1149 1150 |
# File 'lib/FlightXML2REST.rb', line 1148 def post "howMany=#@howMany&ident=#@ident&offset=#@offset" end |