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