text.rb 267 B

1234567891011121314151617
  1. # Copyright (C) 2012-2024 Zammad Foundation, https://zammad-foundation.org/
  2. class Whatsapp::Webhook::Message::Text < Whatsapp::Webhook::Message
  3. private
  4. def body
  5. message[:body]
  6. end
  7. def content_type
  8. 'text/plain'
  9. end
  10. def type
  11. :text
  12. end
  13. end