Module: Discordrb::MemberAttributes

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

Overview

Mixin for the attributes members and private members should have

Instance Attribute Summary collapse

Instance Attribute Details

#joined_atTime (readonly)

Returns when this member joined the server.

Returns:

  • (Time)

    when this member joined the server.



328
329
330
# File 'lib/discordrb/data.rb', line 328

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.



331
332
333
# File 'lib/discordrb/data.rb', line 331

def nick
  @nick
end

#rolesArray<Role> (readonly)

Returns the roles this member has.

Returns:

  • (Array<Role>)

    the roles this member has.



335
336
337
# File 'lib/discordrb/data.rb', line 335

def roles
  @roles
end

#serverServer (readonly)

Returns the server this member is on.

Returns:

  • (Server)

    the server this member is on.



338
339
340
# File 'lib/discordrb/data.rb', line 338

def server
  @server
end