Class: Discorb::Webhook::FollowerWebhook::Guild

Inherits:
DiscordModel
  • Object
show all
Defined in:
lib/discorb/webhook.rb

Overview

Represents a guild of follower webhook.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from DiscordModel

#==, #eql?

Instance Attribute Details

#icon -> Discorb::Asset (readonly)

Returns The icon of the guild.

Returns:



291
292
293
# File 'lib/discorb/webhook.rb', line 291

def icon
  @icon
end

#id -> Discorb::Snowflake (readonly)

Returns The ID of the guild.

Returns:



287
288
289
# File 'lib/discorb/webhook.rb', line 287

def id
  @id
end

#name -> String (readonly)

Returns The name of the guild.

Returns:

  • (String)

    The name of the guild.



289
290
291
# File 'lib/discorb/webhook.rb', line 289

def name
  @name
end

Instance Method Details

#inspect -> Object



305
306
307
# File 'lib/discorb/webhook.rb', line 305

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