videosphere
    Preparing search index...

    Interface InviteTokenDocument

    Raw MongoDB document shape for the invites collection.

    interface InviteTokenDocument {
        _id: string;
        token: string;
        purpose: InviteTokenPurpose;
        grantedRole?: InviteGrantedRole;
        createdBy?: string;
        createdAt: Date;
        expiresAt?: Date;
        usedAt?: Date;
        usedBy?: string;
        updatedAt: Date;
    }
    Index

    Properties

    _id: string
    token: string
    grantedRole?: InviteGrantedRole
    createdBy?: string
    createdAt: Date
    expiresAt?: Date
    usedAt?: Date
    usedBy?: string
    updatedAt: Date