Class: IonicPush::Push::Notification
- Inherits:
-
Object
- Object
- IonicPush::Push::Notification
- Defined in:
- lib/ionic_push/push.rb
Instance Method Summary collapse
- #body ⇒ Object
-
#initialize(tokens, notification) ⇒ Notification
constructor
A new instance of Notification.
Constructor Details
#initialize(tokens, notification) ⇒ Notification
Returns a new instance of Notification.
17 18 19 20 |
# File 'lib/ionic_push/push.rb', line 17 def initialize(tokens, notification) @tokens = tokens @notification = notification end |
Instance Method Details
#body ⇒ Object
22 23 24 25 26 27 28 29 30 |
# File 'lib/ionic_push/push.rb', line 22 def body { tokens: @tokens, notification: { title: @notification[:title], message: @notification[:message] } } end |