Untitled

 avatar
unknown
plain_text
a month ago
436 B
2
Indexable
def lambda_handler(event, context):
    return {
        "sessionAttributes": {},
        "dialogAction": {
            "type": "Close",
            "fulfillmentState": "Fulfilled",
            "message": {
                "contentType": "PlainText",
                "content": "Hi Roshan Shaji Philip, I have ordered your sweet potato curly fries. As selected, your fries will be light salt."
            }
        }
    }
Leave a Comment