Interface iInternalActionsDoc

interface iInternalActionsDoc {
    _docId: string;
    _id?: string;
    actions: {
        discord?: {
            serverId: string;
        };
    };
    clientSecret: string;
    createdBy: string;
    description: string;
    image: string;
    name: string;
}

Hierarchy (view full)

  • Doc
    • iInternalActionsDoc

Implemented by

Properties

_docId: string

A unique stringified document ID

_id?: string

A unique document ID (Mongo DB ObjectID)

actions: {
    discord?: {
        serverId: string;
    };
}

Actions associated with the internal action

clientSecret: string

The client secret of the internal action

createdBy: string

Creator of the internal action

description: string

The description of the internal action

image: string

The image of the internal action

name: string

The name of the internal action