Class: Discordrb::Invite

Inherits:
Object
  • Object
show all
Defined in:
lib/discordrb/data.rb

Overview

A Discord invite to a channel

Instance Attribute Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#channelChannel (readonly)

Returns the channel this invite references.

Returns:

  • (Channel)

    the channel this invite references.



410
411
412
# File 'lib/discordrb/data.rb', line 410

def channel
  @channel
end

#codeString (readonly)

Returns this invite's code.

Returns:

  • (String)

    this invite's code



431
432
433
# File 'lib/discordrb/data.rb', line 431

def code
  @code
end

#inviterUser? (readonly) Also known as: user

Returns the user that made this invite. May also be nil if the user can't be determined.

Returns:

  • (User, nil)

    the user that made this invite. May also be nil if the user can't be determined.



419
420
421
# File 'lib/discordrb/data.rb', line 419

def inviter
  @inviter
end

#revokedtrue, false (readonly) Also known as: revoked?

Returns whether this invite is still valid.

Returns:

  • (true, false)

    whether this invite is still valid.



425
426
427
# File 'lib/discordrb/data.rb', line 425

def revoked
  @revoked
end

#serverServer (readonly)

Returns the server this invite references.

Returns:

  • (Server)

    the server this invite references.



413
414
415
# File 'lib/discordrb/data.rb', line 413

def server
  @server
end

#temporarytrue, false (readonly) Also known as: temporary?

Returns whether or not this invite is temporary.

Returns:

  • (true, false)

    whether or not this invite is temporary.



422
423
424
# File 'lib/discordrb/data.rb', line 422

def temporary
  @temporary
end

#usesInteger (readonly) Also known as: max_uses

Returns the amount of uses left on this invite.

Returns:

  • (Integer)

    the amount of uses left on this invite.



416
417
418
# File 'lib/discordrb/data.rb', line 416

def uses
  @uses
end

#xkcdtrue, false (readonly) Also known as: xkcd?

Returns whether this invite is in xkcd format (i. e. "Human readable" in the invite settings).

Returns:

  • (true, false)

    whether this invite is in xkcd format (i. e. "Human readable" in the invite settings)



428
429
430
# File 'lib/discordrb/data.rb', line 428

def xkcd
  @xkcd
end

Instance Method Details

#==(other) ⇒ Object

Code based comparison



456
457
458
# File 'lib/discordrb/data.rb', line 456

def ==(other)
  other.respond_to?(:code) ? (@code == other.code) : (@code == other)
end

#deleteObject Also known as: revoke

Deletes this invite



461
462
463
# File 'lib/discordrb/data.rb', line 461

def delete
  API.delete_invite(@bot.token, @code)
end