kotlin-datastore / org.khanacademy.metadata / Key

Key

data class Key<T : Keyed<T>>

Typed wrapper around a datastore key.

Constructors

<init>

Key(kind: String, name: String, parentPath: List<KeyPathElement> = listOf())
Key(kind: String, id: Long, parentPath: List<KeyPathElement> = listOf())Key(kind: String, idOrName: KeyIDOrName, parentPath: List<KeyPathElement> = listOf())

Typed wrapper around a datastore key.

Properties

idOrName

val idOrName: KeyIDOrName

kind

val kind: String

parentPath

val parentPath: List<KeyPathElement>

Functions

path

fun path(): List<KeyPathElement>

Extension Functions

toDatastoreKey

fun Key<*>.toDatastoreKey(): <ERROR CLASS>

Convert our abstract keys to the Google cloud datastore key class.