def slot_types()

in source/services/lex-bot/book_appointment/appointment_helpers.py [0:0]


def slot_types(language):
    slot_type_values = {
        "English": [
            {"sampleValue": {"value": "cleaning"}},
            {"sampleValue": {"value": "root canal"}},
            {"sampleValue": {"value": "whitening"}},
        ],
        "French": [
            {"sampleValue": {"value": "nettoyage"}},
            {"sampleValue": {"value": "traitement du canal radiculaire"}},
            {"sampleValue": {"value": "blanchiment"}},
        ],
        "Italian": [
            {"sampleValue": {"value": "pulizia"}},
            {"sampleValue": {"value": "devitalizzazione"}},
            {"sampleValue": {"value": "blanchiment"}},
        ],
        "Spanish": [
            {"sampleValue": {"value": "limpieza"}},
            {"sampleValue": {"value": "endodoncia"}},
            {"sampleValue": {"value": "blanqueamiento"}},
        ],
        "German": [
            {"sampleValue": {"value": "Reinigung"}},
            {"sampleValue": {"value": "Wurzelbehandlung"}},
            {"sampleValue": {"value": "Weißen"}},
        ],
        "Japanese": [
            {"sampleValue": {"value": "クリーニング"}},
            {"sampleValue": {"value": "虫歯治療"}},
            {"sampleValue": {"value": "ホワイトニング"}},
        ],
    }
    return slot_type_values[language]