data class Key<T : Keyed<T>>
Typed wrapper around a datastore key.
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. |
val idOrName: KeyIDOrName |
|
val kind: String |
|
val parentPath: List<KeyPathElement> |
fun path(): List<KeyPathElement> |
fun Key<*>.toDatastoreKey(): <ERROR CLASS>
Convert our abstract keys to the Google cloud datastore key class. |