interface SettingData {
    _id: null | string;
    _stats: DocumentStats;
    key: string;
    user?: string;
    value: any;
}

Properties

Properties

_id: null | string

The _id which uniquely identifies this Setting document

An object of creation and access information

key: string

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

user?: string

The ID of the user this Setting belongs to, if user-scoped.

value: any

The setting value, which is serialized to JSON