DocumentInfo

data class DocumentInfo(val id: String = GenerateId.generate(), val title: String = "", val createdAt: Instant, val lastUpdatedAt: Instant)

Dto class to keep information about the document

Constructors

Link copied to clipboard
constructor(id: String = GenerateId.generate(), title: String = "", createdAt: Instant, lastUpdatedAt: Instant)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val createdAt: Instant
Link copied to clipboard
val id: String
Link copied to clipboard
val lastUpdatedAt: Instant
Link copied to clipboard