Class: Discordrb::Events::ApplicationCommandPermissionsUpdateEvent

Inherits:
Event
  • Object
show all
Defined in:
lib/discordrb/events/interactions.rb

Overview

An event for whenever an application command's permissions are updated.

Instance Attribute Summary collapse

Attributes inherited from Event

#bot

Instance Method Summary collapse

Instance Attribute Details

#application_idInteger (readonly)

Returns the ID of the application whose commands were updated.

Returns:

  • (Integer)

    the ID of the application whose commands were updated.



583
584
585
# File 'lib/discordrb/events/interactions.rb', line 583

def application_id
  @application_id
end

#command_idInteger? (readonly)

Returns the ID of the application command that was updated.

Returns:

  • (Integer, nil)

    the ID of the application command that was updated.



577
578
579
# File 'lib/discordrb/events/interactions.rb', line 577

def command_id
  @command_id
end

#permissionsArray<ApplicationCommand::Permission> (readonly)

Returns the permissions that were updated.

Returns:



580
581
582
# File 'lib/discordrb/events/interactions.rb', line 580

def permissions
  @permissions
end

#server_idInteger (readonly)

Returns the ID of the server where the command permissions were updated.

Returns:

  • (Integer)

    the ID of the server where the command permissions were updated.



574
575
576
# File 'lib/discordrb/events/interactions.rb', line 574

def server_id
  @server_id
end

Instance Method Details

#serverServer

Returns the server where the command's permissions were updated.

Returns:

  • (Server)

    the server where the command's permissions were updated.



597
598
599
# File 'lib/discordrb/events/interactions.rb', line 597

def server
  @bot.server(@server_id)
end