DynamicDocument

Interface representing a dynamic document that can store arbitrary key-value pairs.

This interface extends MutableMap and provides additional convenience methods for type-safe value retrieval and nested document access. It's designed for working with dynamic data structures where the schema is not known at compile time.

Inheritors

Functions

Link copied to clipboard

Retrieves a nested document from the current document.

Link copied to clipboard
open fun <V> getValue(key: String): V

Retrieves a value from the document with type casting.