case class AuditLogEntry(targetId: Option[RawSnowflake], changes: Option[Seq[AuditLogChange[_]]], userId: Option[UserId], id: RawSnowflake, actionType: AuditLogEvent, options: Option[OptionalAuditLogInfo], reason: Option[String]) extends Product with Serializable
An individual audit log event
- targetId
The id of the affected object
- changes
The changes made to the object
- userId
The user responsible for the changes
- id
The id of this entry
- actionType
Type of change that happened
- options
Optional extra data for some changes, see comments on OptionalAuditLogInfo for more info
- reason
The reason for the change
- Source
- auditlog.scala
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- AuditLogEntry
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Instance Constructors
- new AuditLogEntry(targetId: Option[RawSnowflake], changes: Option[Seq[AuditLogChange[_]]], userId: Option[UserId], id: RawSnowflake, actionType: AuditLogEvent, options: Option[OptionalAuditLogInfo], reason: Option[String])
- targetId
The id of the affected object
- changes
The changes made to the object
- userId
The user responsible for the changes
- id
The id of this entry
- actionType
Type of change that happened
- options
Optional extra data for some changes, see comments on OptionalAuditLogInfo for more info
- reason
The reason for the change
Value Members
- val actionType: AuditLogEvent
- val changes: Option[Seq[AuditLogChange[_]]]
- val id: RawSnowflake
- val options: Option[OptionalAuditLogInfo]
- def productElementNames: Iterator[String]
- Definition Classes
- Product
- val reason: Option[String]
- val targetId: Option[RawSnowflake]
- val userId: Option[UserId]