Source code for smarter.apps.chatbot.manifest.enum

"""Smarter API PLugin Manifest - enumerated datatypes."""

from smarter.lib.manifest.enum import SmarterEnumAbstract


###############################################################################
# Enums for manifest keys in error handlers and other on-screen messages
###############################################################################
[docs] class SAMChatbotSpecKeys(SmarterEnumAbstract): """Smarter API Plugin Spec keys enumeration.""" CONFIG = "config" PLUGINS = "plugins" FUNCTIONS = "functions" AUTH_TOKEN = "apiKey"