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.
698 699 700 |
# File 'lib/FlightXML2REST.rb', line 698 def initialize(alert_id = nil) @alert_id = alert_id end |
Instance Attribute Details
#alert_id ⇒ Object
Returns the value of attribute alert_id.
697 698 699 |
# File 'lib/FlightXML2REST.rb', line 697 def alert_id @alert_id end |
Instance Method Details
#post ⇒ Object
701 702 703 |
# File 'lib/FlightXML2REST.rb', line 701 def post "alert_id=#@alert_id" end |