Class: Discorb::Integration::Application

Inherits:
DiscordModel show all
Defined in:
lib/discorb/integration.rb

Overview

Represents an application for an integration.

Instance Attribute Summary collapse

Method Summary

Methods inherited from DiscordModel

#==, #eql?, #hash

Instance Attribute Details

#bot -> Discorb::User? (readonly)

Returns:

  • (Discorb::User)

    The bot user associated with the application.

  • (nil)

    If the application has no bot user.



130
131
132
# File 'lib/discorb/integration.rb', line 130

def bot
  @bot
end

#description -> String (readonly)

Returns The description of the application.

Returns:

  • (String)

    The description of the application.



125
126
127
# File 'lib/discorb/integration.rb', line 125

def description
  @description
end

#icon -> Asset? (readonly)

Returns:

  • (Asset)

    The icon of the application.

  • (nil)

    If the application has no icon.



123
124
125
# File 'lib/discorb/integration.rb', line 123

def icon
  @icon
end

#id -> Discorb::Snowflake (readonly)

Returns The ID of the application.

Returns:



118
119
120
# File 'lib/discorb/integration.rb', line 118

def id
  @id
end

#name -> String (readonly)

Returns The name of the application.

Returns:

  • (String)

    The name of the application.



120
121
122
# File 'lib/discorb/integration.rb', line 120

def name
  @name
end

#summary -> String (readonly)

Returns The summary of the application.

Returns:

  • (String)

    The summary of the application.



127
128
129
# File 'lib/discorb/integration.rb', line 127

def summary
  @summary
end