Sha256: 0f9d185cf972ff1448522eeaa6e91a93534711b337ae7b5653d3ce6b4c214384
Contents?: true
Size: 653 Bytes
Versions: 1
Compression:
Stored size: 653 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
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
tdlib-ruby-2.1.0 | lib/tdlib/types/update/have_pending_notifications.rb |