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:



267
268
269
# File 'lib/discorb/webhook.rb', line 267

def icon
  @icon
end

#id -> Discorb::Snowflake (readonly)

Returns The ID of the guild.

Returns:



263
264
265
# File 'lib/discorb/webhook.rb', line 263

def id
  @id
end

#name -> String (readonly)

Returns The name of the guild.

Returns:

  • (String)

    The name of the guild.



265
266
267
# File 'lib/discorb/webhook.rb', line 265

def name
  @name
end

Instance Method Details

#inspect -> Object



281
282
283
# File 'lib/discorb/webhook.rb', line 281

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