Class: Discorb::Webhook::FollowerWebhook::Channel

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

Overview

Represents a channel of follower webhook.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from DiscordModel

#==, #eql?

Instance Attribute Details

#id -> Discorb::Snowflake (readonly)

Returns The ID of the channel.

Returns:



315
316
317
# File 'lib/discorb/webhook.rb', line 315

def id
  @id
end

#name -> String (readonly)

Returns The name of the channel.

Returns:

  • (String)

    The name of the channel.



317
318
319
# File 'lib/discorb/webhook.rb', line 317

def name
  @name
end

Instance Method Details

#inspect -> Object



330
331
332
# File 'lib/discorb/webhook.rb', line 330

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