class BMO::APNS::Client::FeedbackTuple

Handle the Feedback Object

@!attribute time [Time] Time when the device was notified

but didn't have the app installed

@!attribute token [String] The Token of the device notified wrongly

Attributes

time[R]
token[R]

Public Class Methods

new(timestamp, token) click to toggle source
# File lib/bmo/apns/client.rb, line 74
def initialize(timestamp, token)
  @time  = Time.at(timestamp)
  @token = token
end