Module: Discordrb::MemberAttributes

Included in:
Member, Recipient
Defined in:
lib/discordrb/data/member.rb

Overview

Mixin for the attributes members and private members should have

Instance Attribute Summary collapse

Instance Attribute Details

#boosting_sinceTime? (readonly)

Returns when this member boosted this server, nil if they haven't.

Returns:

  • (Time, nil)

    when this member boosted this server, nil if they haven't.



10
11
12
# File 'lib/discordrb/data/member.rb', line 10

def boosting_since
  @boosting_since
end

#communication_disabled_untilTime (readonly) Also known as: timeout

Returns When the user's timeout will expire.

Returns:

  • (Time)

    When the user's timeout will expire.



23
24
25
# File 'lib/discordrb/data/member.rb', line 23

def communication_disabled_until
  @communication_disabled_until
end

#joined_atTime (readonly)

Returns when this member joined the server.

Returns:

  • (Time)

    when this member joined the server.



7
8
9
# File 'lib/discordrb/data/member.rb', line 7

def joined_at
  @joined_at
end

#nickString? (readonly) Also known as: nickname

Returns the nickname this member has, or nil if it has none.

Returns:

  • (String, nil)

    the nickname this member has, or nil if it has none.



13
14
15
# File 'lib/discordrb/data/member.rb', line 13

def nick
  @nick
end

#rolesArray<Role> (readonly)

Returns the roles this member has.

Returns:

  • (Array<Role>)

    the roles this member has.



17
18
19
# File 'lib/discordrb/data/member.rb', line 17

def roles
  @roles
end

#serverServer (readonly)

Returns the server this member is on.

Returns:

  • (Server)

    the server this member is on.



20
21
22
# File 'lib/discordrb/data/member.rb', line 20

def server
  @server
end