Class: Discordrb::Events::IntegrationDeleteEvent
- Defined in:
- lib/discordrb/events/integrations.rb
Overview
Raised whenever an integration is deleted.
Instance Attribute Summary collapse
-
#application_id ⇒ Integer?
readonly
The ID of the application that was removed.
-
#integration_id ⇒ Integer
readonly
The ID of the integration that was removed.
-
#server ⇒ Server
readonly
The server associated with the event.
Attributes inherited from Event
Instance Attribute Details
#application_id ⇒ Integer? (readonly)
Returns the ID of the application that was removed.
38 39 40 |
# File 'lib/discordrb/events/integrations.rb', line 38 def application_id @application_id end |
#integration_id ⇒ Integer (readonly)
Returns the ID of the integration that was removed.
35 36 37 |
# File 'lib/discordrb/events/integrations.rb', line 35 def integration_id @integration_id end |
#server ⇒ Server (readonly)
Returns the server associated with the event.
32 33 34 |
# File 'lib/discordrb/events/integrations.rb', line 32 def server @server end |