Sha256: d689eb37a8ab6a025651b977675501276321a77b6471a98d8ba5ca9e34174c40

Contents?: true

Size: 409 Bytes

Versions: 5

Compression:

Stored size: 409 Bytes

Contents

module TD::Types
  # The selected background has changed.
  #
  # @attr for_dark_theme [Boolean] True, if background for dark theme has changed.
  # @attr background [TD::Types::Background, nil] The new selected background; may be null.
  class Update::SelectedBackground < Update
    attribute :for_dark_theme, TD::Types::Bool
    attribute :background, TD::Types::Background.optional.default(nil)
  end
end

Version data entries

5 entries across 5 versions & 2 rubygems

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