claudia-bot-builder-fb
Version:
Create chat-bots for various platforms and deploy to AWS Lambda quickly
16 lines (13 loc) • 357 B
JavaScript
module.exports = function(messageObject) {
if (messageObject && messageObject.type == 'text' && messageObject.chatId){
return {
sender: messageObject.from,
text: messageObject.body,
chatId: messageObject.chatId,
kikType: messageObject.type,
originalRequest: messageObject,
type: 'kik'
};
}
};
;