Sha256: a61de68b324d630f03f417b24abb7831de89073c495be955eaa3350c406129dc

Contents?: true

Size: 652 Bytes

Versions: 5

Compression:

Stored size: 652 Bytes

Contents

module TD::Types
  # Describes whether there are some pending notification updates.
  # Can be used to prevent application from killing, while there are some pending notifications.
  #
  # @attr have_delayed_notifications [Boolean] True, if there are some delayed notification updates, which will be sent
  #   soon.
  # @attr have_unreceived_notifications [Boolean] True, if there can be some yet unreceived notifications, which are
  #   being fetched from the server.
  class Update::HavePendingNotifications < Update
    attribute :have_delayed_notifications, TD::Types::Bool
    attribute :have_unreceived_notifications, TD::Types::Bool
  end
end

Version data entries

5 entries across 5 versions & 2 rubygems

Version Path
tdlib-schema-1.7.0.4 lib/tdlib/types/update/have_pending_notifications.rb
tdlib-schema-1.7.0.3 lib/tdlib/types/update/have_pending_notifications.rb
tdlib-schema-1.7.0.2 lib/tdlib/types/update/have_pending_notifications.rb
tdlib-schema-1.7.0.1 lib/tdlib/types/update/have_pending_notifications.rb
tdlib-ruby-2.2.0 lib/tdlib/types/update/have_pending_notifications.rb