Entity

interface Entity

This interface is used by all the entities in the Lightspark systems. It defines a few core fields that are available everywhere. Any object that implements this interface can be queried using the entity query and its ID.

Inheritors

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
abstract val createdAt: Instant

The date and time when the entity was first created.

Link copied to clipboard
abstract val id: String

The unique identifier of this entity across all Lightspark systems. Should be treated as an opaque string.

Link copied to clipboard
abstract val updatedAt: Instant

The date and time when the entity was last updated.