Sha256: f5c8e418054461c2d34e1dd084be0685dcfceb3a42532064a61964088d649cf9

Contents?: true

Size: 583 Bytes

Versions: 3

Compression:

Stored size: 583 Bytes

Contents

module TD::Types
  # A chat member has gained/lost administrator status, or the list of their administrator privileges has changed.
  #
  # @attr user_id [Integer] Chat member user identifier.
  # @attr old_status [TD::Types::ChatMemberStatus] Previous status of the chat member.
  # @attr new_status [TD::Types::ChatMemberStatus] New status of the chat member.
  class ChatEventAction::MemberPromoted < ChatEventAction
    attribute :user_id, TD::Types::Integer
    attribute :old_status, TD::Types::ChatMemberStatus
    attribute :new_status, TD::Types::ChatMemberStatus
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

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