Class: IonicPush::Push::Notification

Inherits:
Object
  • Object
show all
Defined in:
lib/ionic_push/push.rb

Instance Method Summary collapse

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

#bodyObject


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