ObjectContainer

@Serializable
data class ObjectContainer<T>(val id: ObjectId, val createdAt: Instant?, val updatedAt: Instant?, val objectData: T?)

Constructors

Link copied to clipboard
constructor(id: ObjectId, createdAt: Instant?, updatedAt: Instant?, objectData: T?)

Properties

Link copied to clipboard
@SerialName(value = "date_created")
val createdAt: Instant?
Link copied to clipboard
Link copied to clipboard
@SerialName(value = "object")
val objectData: T?
Link copied to clipboard
@SerialName(value = "date_updated")
val updatedAt: Instant?