Class: Discorb::Guild::Ban

Inherits:
DiscordModel show all
Defined in:
lib/discorb/guild.rb

Overview

Represents a ban.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from DiscordModel

#==, #eql?

Instance Attribute Details

#reason -> String (readonly)

Returns The reason for the ban.

Returns:

  • (String)

    The reason for the ban.



1251
1252
1253
# File 'lib/discorb/guild.rb', line 1251

def reason
  @reason
end

#user -> Discorb::User (readonly)

Returns The user.

Returns:



1249
1250
1251
# File 'lib/discorb/guild.rb', line 1249

def user
  @user
end

Instance Method Details

#inspect -> Object



1268
1269
1270
# File 'lib/discorb/guild.rb', line 1268

def inspect
  "<#{self.class.name} #{@user}>"
end