Class: Discorb::AuditLog::Integration

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

Overview

Represents an integration in an audit log entry.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from DiscordModel

#==, #eql?

Instance Attribute Details

#account -> Discorb::Integration::Account (readonly)

Returns The account of the integration.

Returns:



366
367
368
# File 'lib/discorb/audit_logs.rb', line 366

def 
  @account
end

#id -> Discorb::Snowflake (readonly)

Returns The ID of the integration.

Returns:



360
361
362
# File 'lib/discorb/audit_logs.rb', line 360

def id
  @id
end

#name -> String (readonly)

Returns The name of the integration.

Returns:

  • (String)

    The name of the integration.



364
365
366
# File 'lib/discorb/audit_logs.rb', line 364

def name
  @name
end

#type -> Symbol (readonly)

Returns The type of the integration.

Returns:

  • (Symbol)

    The type of the integration.



362
363
364
# File 'lib/discorb/audit_logs.rb', line 362

def type
  @type
end

Instance Method Details

#inspect -> Object



380
381
382
# File 'lib/discorb/audit_logs.rb', line 380

def inspect
  "#<#{self.class} #{@id}>"
end