Class: Discorb::Message::Reference

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

Overview

Represents reference of message.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(guild_id, channel_id, message_id, fail_if_not_exists: true) -> Reference

Initialize a new reference.

Parameters:



535
536
537
538
539
540
# File 'lib/discorb/message.rb', line 535

def initialize(guild_id, channel_id, message_id, fail_if_not_exists: true)
  @guild_id = guild_id
  @channel_id = channel_id
  @message_id = message_id
  @fail_if_not_exists = fail_if_not_exists
end

Instance Attribute Details

#channel_id -> Discorb::Snowflake

Returns The channel ID.

Returns:



519
520
521
# File 'lib/discorb/message.rb', line 519

def channel_id
  @channel_id
end

#fail_if_not_exists -> Boolean Also known as: fail_if_not_exists?

Returns Whether fail the request if the message is not found.

Returns:

  • (Boolean)

    Whether fail the request if the message is not found.



523
524
525
# File 'lib/discorb/message.rb', line 523

def fail_if_not_exists
  @fail_if_not_exists
end

#guild_id -> Discorb::Snowflake

Returns The guild ID.

Returns:



517
518
519
# File 'lib/discorb/message.rb', line 517

def guild_id
  @guild_id
end

#message_id -> Discorb::Snowflake

Returns The message ID.

Returns:



521
522
523
# File 'lib/discorb/message.rb', line 521

def message_id
  @message_id
end

Class Method Details

.from_hash(data) -> Discorb::Message::Reference

Initialize a new reference from a hash.

Parameters:

  • data (Hash)

    The hash.

Returns:

See Also:



566
567
568
# File 'lib/discorb/message.rb', line 566

def self.from_hash(data)
  new(data[:guild_id], data[:channel_id], data[:message_id], fail_if_not_exists: data[:fail_if_not_exists])
end

Instance Method Details

#to_hash -> Hash Also known as: to_reference

Convert the reference to a hash.

Returns:

  • (Hash)

    The hash.



547
548
549
550
551
552
553
554
# File 'lib/discorb/message.rb', line 547

def to_hash
  {
    message_id: @message_id,
    channel_id: @channel_id,
    guild_id: @guild_id,
    fail_if_not_exists: @fail_if_not_exists,
  }
end