handle()

in alexa/lambda/lib/functions/aws-sap-alexa-scp-solo/index.js [215:222]


    handle(handlerInput) {
        const speakOutput = 'You can ask about your user ID or get data from SAP! How can I help?';

        return handlerInput.responseBuilder
            .speak(speakOutput)
            .reprompt(speakOutput)
            .getResponse();
    }