Sha256: 82f68812caef4153e89a0f0e7e3ab8988b4a200faa2af49ec55f4e361d587ad0

Contents?: true

Size: 664 Bytes

Versions: 2

Compression:

Stored size: 664 Bytes

Contents

module TD::Types
  # New message was received through a push notification.
  #
  # @attr message_id [Integer] The message identifier.
  #   The message will not be available in the chat history, but the ID can be used in viewMessages and as
  #   reply_to_message_id.
  # @attr sender_user_id [Integer] Sender of the message.
  #   Corresponding user may be inaccessible.
  # @attr content [TD::Types::PushMessageContent] Push message content.
  class NotificationType::NewPushMessage < NotificationType
    attribute :message_id, TD::Types::Integer
    attribute :sender_user_id, TD::Types::Integer
    attribute :content, TD::Types::PushMessageContent
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
tdlib-ruby-2.2.0 lib/tdlib/types/notification_type/new_push_message.rb
tdlib-ruby-2.1.0 lib/tdlib/types/notification_type/new_push_message.rb