Uuid

expect class Uuid(source)

Immutable universally unique identifier backed by Java UUID on JVM and Kotlin Uuid on JavaScript. Use parseUuid to create identifiers from canonical UUID text in shared code.

actual typealias Uuid = kotlin.uuid.Uuid(source)

Uses Kotlin's standard UUID representation on JavaScript.

actual typealias Uuid = UUID

Keeps existing JVM UUID constructor and property descriptors binary compatible.