ErrorLog

@Serializable
data class ErrorLog(val planId: UUID, val error: String, val type: ErrorLogType, val timestamp: Long)

Data class representing an error log.

Constructors

Link copied to clipboard
constructor(planId: UUID, error: String, type: ErrorLogType, timestamp: Long)

Properties

Link copied to clipboard

The error message.

Link copied to clipboard
@Serializable(with = UUIDSerializer::class)
val planId: UUID

The unique identifier of the plan associated with the error.

Link copied to clipboard

The timestamp when the error occurred.

Link copied to clipboard

The type of the error log.