Class: Discorb::AuditLog::Entry::Changes

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

Overview

Represents the changes in an audit log entry.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from DiscordModel

#==, #eql?

Instance Attribute Details

#data -> Object (readonly)

Returns the value of attribute data.



271
272
273
# File 'lib/discorb/audit_logs.rb', line 271

def data
  @data
end

Instance Method Details

#[](key) -> Discorb::AuditLog::Entry::Change?

Get a change with the given key.

Parameters:

  • key (Symbol)

    The key to get.

Returns:



308
309
310
# File 'lib/discorb/audit_logs.rb', line 308

def [](key)
  @data[key.to_sym]
end

#inspect -> Object

Formats the changes into a string.



287
288
289
# File 'lib/discorb/audit_logs.rb', line 287

def inspect
  "#<#{self.class} #{@data.length} changes>"
end

#keys -> Array<Symbol>

Get keys of changes.

Returns:

  • (Array<Symbol>)

    The keys of the changes.



296
297
298
# File 'lib/discorb/audit_logs.rb', line 296

def keys
  @data.keys
end