Class: DeleteAlertRequest
- Inherits:
-
Object
- Object
- DeleteAlertRequest
- Defined in:
- lib/FlightXML2REST.rb
Overview
DeleteAlert
Instance Attribute Summary collapse
-
#alert_id ⇒ Object
Returns the value of attribute alert_id.
Instance Method Summary collapse
-
#initialize(alert_id = nil) ⇒ DeleteAlertRequest
constructor
A new instance of DeleteAlertRequest.
- #post ⇒ Object
Constructor Details
#initialize(alert_id = nil) ⇒ DeleteAlertRequest
Returns a new instance of DeleteAlertRequest.
625 626 627 |
# File 'lib/FlightXML2REST.rb', line 625 def initialize(alert_id = nil) @alert_id = alert_id end |
Instance Attribute Details
#alert_id ⇒ Object
Returns the value of attribute alert_id.
624 625 626 |
# File 'lib/FlightXML2REST.rb', line 624 def alert_id @alert_id end |
Instance Method Details
#post ⇒ Object
628 629 630 |
# File 'lib/FlightXML2REST.rb', line 628 def post "alert_id=#@alert_id" end |