Interface iDynamicDataDoc<Q>

interface iDynamicDataDoc<Q> {
    _docId: string;
    _id?: string;
    createdBy: string;
    data: DynamicDataHandlerData<Q>;
    dataSecret: string;
    dynamicDataId: string;
    handlerId: Q;
    label: string;
}

Type Parameters

Hierarchy (view full)

  • Doc
    • iDynamicDataDoc

Implemented by

Properties

_docId: string

A unique stringified document ID

_id?: string

A unique document ID (Mongo DB ObjectID)

createdBy: string
dataSecret: string
dynamicDataId: string
handlerId: Q
label: string
""