Sha256: c6b31d87ead2e1fcf83913f34695d49ef59642ee191f3cf0aa165376f1487117

Contents?: true

Size: 428 Bytes

Versions: 4

Compression:

Stored size: 428 Bytes

Contents

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

Version data entries

4 entries across 4 versions & 2 rubygems

Version Path
tdlib-schema-1.7.0.3 lib/tdlib/types/chat_event_action/photo_changed.rb
tdlib-schema-1.7.0.2 lib/tdlib/types/chat_event_action/photo_changed.rb
tdlib-schema-1.7.0.1 lib/tdlib/types/chat_event_action/photo_changed.rb
tdlib-ruby-2.0.0 lib/tdlib/types/chat_event_action/photo_changed.rb