interface SettingData {
    _id: string;
    key: string;
    value: any;
    _stats: DocumentStats;
}

Properties

Properties

_id: string

The _id which uniquely identifies this Setting document

key: string

The setting key, a composite of {scope}.{name}

value: any

The setting value, which is serialized to JSON

_stats: DocumentStats

An object of creation and access information