Sha256: 7126fe342bed7a059d8add92967cd5a89ee7d06b85729fb9975b3f259dd9135e
Contents?: true
Size: 731 Bytes
Versions: 3
Compression:
Stored size: 731 Bytes
Contents
module TD::Types # Contains statistics about administrator actions done by a user. # # @attr user_id [Integer] Administrator user identifier. # @attr deleted_message_count [Integer] Number of messages deleted by the administrator. # @attr banned_user_count [Integer] Number of users banned by the administrator. # @attr restricted_user_count [Integer] Number of users restricted by the administrator. class ChatStatisticsAdministratorActionsInfo < Base attribute :user_id, TD::Types::Coercible::Integer attribute :deleted_message_count, TD::Types::Coercible::Integer attribute :banned_user_count, TD::Types::Coercible::Integer attribute :restricted_user_count, TD::Types::Coercible::Integer end end
Version data entries
3 entries across 3 versions & 1 rubygems