Interface BotActivity

interface BotActivity {
    name: string;
    state?: null | string;
    type: ActivityTypes;
    url?: null | string;
}

Hierarchy

  • Pick<Activity, "name" | "url" | "state" | "type">
    • BotActivity

Properties

Properties

name: string
state?: null | string
url?: null | string