Interface iGroupDoc<T>

Interfaces

interface iGroupDoc<T> {
    _docId: string;
    _id?: string;
    createdAt: T;
    createdBy: string;
    groupId: string;
    metadata: iMetadata<T>;
    pages: iGroupPage<T>[];
    type: string;
}

Type Parameters

Hierarchy (view full)

Implemented by

Properties

_docId: string

A unique stringified document ID

_id?: string

A unique document ID (Mongo DB ObjectID)

createdAt: T

The time the group was created

createdBy: string

The BitBadges address of the user who created this group

groupId: string

The group ID

metadata: iMetadata<T>

The overall metadata for the group

pages: iGroupPage<T>[]

The pages for the group

type: string

Type of the group