Class: Stealth::Services::Facebook::MessageReadsEvent

Inherits:
Object
  • Object
show all
Defined in:
lib/stealth/services/facebook/events/message_reads_event.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(service_message:, params:) ⇒ MessageReadsEvent

Returns a new instance of MessageReadsEvent.



14
15
16
17
# File 'lib/stealth/services/facebook/events/message_reads_event.rb', line 14

def initialize(service_message:, params:)
  @service_message = service_message
  @params = params
end

Instance Attribute Details

#paramsObject (readonly)

Returns the value of attribute params.



12
13
14
# File 'lib/stealth/services/facebook/events/message_reads_event.rb', line 12

def params
  @params
end

#service_messageObject (readonly)

Returns the value of attribute service_message.



12
13
14
# File 'lib/stealth/services/facebook/events/message_reads_event.rb', line 12

def service_message
  @service_message
end

Instance Method Details

#processObject



19
20
21
# File 'lib/stealth/services/facebook/events/message_reads_event.rb', line 19

def process
  fetch_read
end