ActivityLogEntry

@Serializable
data class ActivityLogEntry(val id: Long, val name: String, val overview: String? = null, val shortOverview: String? = null, val type: String, val itemId: String? = null, val date: DateTime, val userId: UUID, val userPrimaryImageTag: String? = null, val severity: LogLevel)

An activity log entry.

Constructors

Link copied to clipboard
constructor(id: Long, name: String, overview: String? = null, shortOverview: String? = null, type: String, itemId: String? = null, date: DateTime, userId: UUID, userPrimaryImageTag: String? = null, severity: LogLevel)

Properties

Link copied to clipboard
@SerialName(value = "Date")
val date: DateTime

The date.

Link copied to clipboard
@SerialName(value = "Id")
val id: Long

The identifier.

Link copied to clipboard
@SerialName(value = "ItemId")
val itemId: String?

The item identifier.

Link copied to clipboard
@SerialName(value = "Name")
val name: String

The name.

Link copied to clipboard
@SerialName(value = "Overview")
val overview: String?

The overview.

Link copied to clipboard
@SerialName(value = "Severity")
val severity: LogLevel

The log severity.

Link copied to clipboard
@SerialName(value = "ShortOverview")
val shortOverview: String?

The short overview.

Link copied to clipboard
@SerialName(value = "Type")
val type: String

The type.

Link copied to clipboard
@SerialName(value = "UserId")
val userId: UUID

The user identifier.

Link copied to clipboard
@SerialName(value = "UserPrimaryImageTag")
val userPrimaryImageTag: String?

The user primary image tag.