Class: Discorb::Integration::Application
- Inherits:
-
DiscordModel
- Object
- DiscordModel
- Discorb::Integration::Application
- Defined in:
- lib/discorb/integration.rb
Overview
Represents an application for an integration.
Instance Attribute Summary collapse
- #bot -> Discorb::User? readonly
-
#description -> String
readonly
The description of the application.
- #icon -> Asset? readonly
-
#id -> Discorb::Snowflake
readonly
The ID of the application.
-
#name -> String
readonly
The name of the application.
-
#summary -> String
readonly
The summary of the application.
Method Summary
Methods inherited from DiscordModel
Instance Attribute Details
#bot -> Discorb::User? (readonly)
139 140 141 |
# File 'lib/discorb/integration.rb', line 139 def bot @bot end |
#description -> String (readonly)
Returns The description of the application.
134 135 136 |
# File 'lib/discorb/integration.rb', line 134 def description @description end |
#icon -> Asset? (readonly)
132 133 134 |
# File 'lib/discorb/integration.rb', line 132 def icon @icon end |
#id -> Discorb::Snowflake (readonly)
Returns The ID of the application.
127 128 129 |
# File 'lib/discorb/integration.rb', line 127 def id @id end |
#name -> String (readonly)
Returns The name of the application.
129 130 131 |
# File 'lib/discorb/integration.rb', line 129 def name @name end |
#summary -> String (readonly)
Returns The summary of the application.
136 137 138 |
# File 'lib/discorb/integration.rb', line 136 def summary @summary end |