Class: Discorb::ThreadChannel::Member

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

Overview

Repre

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from DiscordModel

#==, #eql?, #hash

Constructor Details

#initialize(cilent, data) -> Member

Returns a new instance of Member.



1017
1018
1019
1020
1021
1022
# File 'lib/discorb/channel.rb', line 1017

def initialize(cilent, data)
  @cilent = cilent
  @thread_id = data[:id]
  @user_id = data[:user_id]
  @joined_at = Time.iso8601(data[:join_timestamp])
end

Instance Attribute Details

#joined_at -> Object (readonly)

Returns the value of attribute joined_at.



1015
1016
1017
# File 'lib/discorb/channel.rb', line 1015

def joined_at
  @joined_at
end

Instance Method Details

#id -> Object



1032
1033
1034
# File 'lib/discorb/channel.rb', line 1032

def id
  @user_id
end

#inspect -> Object



1040
1041
1042
# File 'lib/discorb/channel.rb', line 1040

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

#member -> Object



1028
1029
1030
# File 'lib/discorb/channel.rb', line 1028

def member
  thread && thread.members[@user_id]
end

#thread -> Object



1024
1025
1026
# File 'lib/discorb/channel.rb', line 1024

def thread
  @client.channels[@thread_id]
end

#user -> Object



1036
1037
1038
# File 'lib/discorb/channel.rb', line 1036

def user
  @cilent.users[@user_id]
end