Gets the name of the last matched intent.
// Using conv.input.raw app.intent('function name', conv => { conv.close(`Last match intent: ${conv.intent.name}`) })
Gets the parameters associated with the last matched intent.
// Using conv.input.raw app.intent('function name', conv => { conv.close(`Last match intent: ${conv.intent.params.paramName.orginal}`) conv.close(`Last match intent: ${conv.intent.params.paramName.orginal}`) })
Generated using TypeDoc
Gets the name of the last matched intent.