Sha256: 1a4994a80c4a79e96fff201b49dffbd97a709c06090673c95d82e3f23292650b

Contents?: true

Size: 412 Bytes

Versions: 2

Compression:

Stored size: 412 Bytes

Contents

module TD::Types
  # The chat photo was changed.
  #
  # @attr old_photo [TD::Types::Photo, nil] Previous chat photo value; may be null.
  # @attr new_photo [TD::Types::Photo, nil] New chat photo value; may be null.
  class ChatEventAction::PhotoChanged < ChatEventAction
    attribute :old_photo, TD::Types::Photo.optional.default(nil)
    attribute :new_photo, TD::Types::Photo.optional.default(nil)
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
tdlib-ruby-2.2.0 lib/tdlib/types/chat_event_action/photo_changed.rb
tdlib-ruby-2.1.0 lib/tdlib/types/chat_event_action/photo_changed.rb