Sha256: e4dc29124e721b9cee9eebe56c19d7b9e5acd3e2565fe88b3a963c4fdb4dee88

Contents?: true

Size: 326 Bytes

Versions: 3

Compression:

Stored size: 326 Bytes

Contents

module TD::Types
  # A chat photo was changed.
  #
  # @attr chat_id [Integer] Chat identifier.
  # @attr photo [TD::Types::ChatPhoto, nil] The new chat photo; may be null.
  class Update::ChatPhoto < Update
    attribute :chat_id, TD::Types::Integer
    attribute :photo, TD::Types::ChatPhoto.optional.default(nil)
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
tdlib-ruby-2.2.0 lib/tdlib/types/update/chat_photo.rb
tdlib-ruby-2.1.0 lib/tdlib/types/update/chat_photo.rb
tdlib-ruby-2.0.0 lib/tdlib/types/update/chat_photo.rb